 body {
     background: linear-gradient(180deg, black, rgb(50, 0, 0));
     color: #fefefe;
     font-family: "Trebuchet MS", Arial, sans-serif;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100vh;
     margin: 0;
 }

 h1 {
     font-size: 3.5rem;
     background: linear-gradient(134deg, #e50914, #b81d24);
     -webkit-background-clip: text;
     -moz-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 50px;
     text-transform: uppercase;
     letter-spacing: 2px;
     text-align: center;
 }

 .dashboard-buttons {
     display: flex;
     gap: 40px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .dashboard-buttons a {
     display: inline-block;
     padding: 30px 60px;
     font-size: 1.5rem;
     text-decoration: none;
     color: #fff;
     background: linear-gradient(135deg, #e50914, #b81d24);
     border-radius: 25px;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
     transition: transform 0.2s ease, background 0.3s ease;
 }

 .dashboard-buttons a:hover {
     transform: scale(1.05);
     background: linear-gradient(135deg, #b81d24, #e50914);
 }

 @media (max-width: 600px) {
     .dashboard-buttons {
         flex-direction: column;
         gap: 20px;
     }
 }