body {
    background-color: #330000;
    color: gold;
    font-family: 'Segoe UI', sans-serif;
}

h1, h2 {
    color: #ffffff;
}

.button {
    background: linear-gradient(45deg, gold, violet);
    color: #111;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
}

.button:hover {
    background: linear-gradient(45deg, violet, gold);
}

body {
    background: linear-gradient(to bottom, #330000, #000);
    color: gold;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    padding-top: 40px;
}

        body {
            background: linear-gradient(to right, #500000, #110101);
            font-family: 'Orbitron', sans-serif;
            color: gold;
            text-align: center;
            padding: 20px;
            margin: 0;
        }
        .logo {
            max-width: 120px;
            margin: 20px auto;
            display: block;
        }
        .nav-button {
            display: block;
            background: linear-gradient(135deg, #ff0000, #6c0000);
            color: #fff;
            padding: 15px 25px;
            margin: 20px auto;
            width: 80%;
            max-width: 300px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 0 10px #ffefb0;
            transition: all 0.2s ease-in-out;
        }
        .nav-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px #ffd700, 0 0 25px #8f0000;
        }
        .login-container {
            background: rgba(255, 255, 255, 0.08);
            padding: 30px;
            border-radius: 15px;
            max-width: 400px;
            margin: 30px auto;
            box-shadow: 0 0 20px #ff0000 inset;
        }
        h2 {
            font-size: 22px;
            margin-bottom: 20px;
        }
        input[type="text"] {
            width: 50%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ff0000;
            background: #330000;
            color: gold;
            font-size: 16px;
            box-shadow: 0 0 10px #cc0000 inset;
            margin-bottom: 20px;
        }
        button {
            padding: 15px;
            width: 100%;
            background: linear-gradient(45deg, #000000, #ff0000);
            color: white;
            font-weight: bold;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 0 10px #8f0000;
        }
        button:hover {
            background: linear-gradient(45deg, #ff0000, #4d001f);
        }
        .error {
            color: red;
            margin-top: 15px;
            font-size: 16px;
        }


.wheel-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: auto;
}

.wheel {
    width: 100%;
    height: auto;
    transition: transform 6s cubic-bezier(0.33, 1, 0.68, 1);
    transform-origin: center center;
    z-index: 1;
    position: relative;
}

.marker {
    position: absolute;
    width: 40px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.stand {
    position: absolute;
    bottom: -60px;
    width: 100%;
    z-index: 0;
}

.button {
    margin-top: 40px;
    background: linear-gradient(45deg, gold, violet);
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.button:hover {
    background: linear-gradient(45deg, violet, gold);
}


        .responsive-img {
          width: 20%;
        }
        @media (max-width: 768px) {
          .responsive-img {
            width: 50% !important;
          }
        }
        .container {
            max-width: 1000px;
            margin: auto;
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 20px;
            border-radius: 12px;
            box-shadow: 0 0 15px #cc0000, 0 0 20px #ff2d00 inset;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        th, td {
            padding: 12px;
            border: 1px solid #888;
            text-align: center;
            font-size: 20px;
            
        }
        @media screen and (max-width: 600px) {
            table, thead, tbody, th, td, tr {
                display: block;
                width: 100%;
            }
            th {
                display: none;
            }
            td {
                margin-bottom: 10px;
                text-align: left;
                padding: 10px;
                border: none;
                background: rgba(255,255,255,0.05);
                border-radius: 5px;
            }
        }


        .wheel-wrapper {
            position: relative;
            width: 100%;
            max-width: 320px;
            height: auto;
            margin: 0 auto 30px;
        }
        #wheel {
            width: 100%;
            max-width: 100%;
            height: auto;
            transform: rotate(0deg);
            transition: transform 5s ease-out;
        }
        .marker {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%) rotate(180deg);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 30px solid #ff0059; /* neon magenta */
            z-index: 2;
            filter: drop-shadow(0 0 6px #ff0059) drop-shadow(0 0 12px #ff2d95);
            animation: pulseGlow 1.2s infinite alternate;
        }
        
