
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1e0033, #0a043c, #03045e);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow-x: hidden;
        }
        
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .container {
            width: 100%;
            max-width: 600px;
            padding: 20px;
            text-align: center;
        }
        
        .header {
            background: linear-gradient(90deg, #8e2de2, #4a00e0);
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .header:before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to right, 
                rgba(255, 255, 255, 0) 0%, 
                rgba(255, 255, 255, 0.3) 50%, 
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            animation: shineEffect 4s infinite;
        }
        
        @keyframes shineEffect {
            0% { left: -150%; }
            100% { left: 150%; }
        }
        
        .header h1 {
            font-size: 24px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .logo-container {
            margin: 20px 0;
            position: relative;
        }
        
        .logo-container:after {
            content: "";
            position: absolute;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0) 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            animation: pulse-gold 2s infinite;
        }
        
        @keyframes pulse-gold {
            0% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
            100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
        }
        
        .logo {
            width: 150px;
            height: 150px;
            border-radius: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background: radial-gradient(circle, #302b63, #24243e);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            border: 3px solid #8A2BE2;
        }
        
        .logo:before {
            content: "";
            position: absolute;
            width: 150%;
            height: 150%;
            background: linear-gradient(45deg, 
                rgba(255,215,0,0.5), 
                rgba(138,43,226,0.5), 
                rgba(255,215,0,0.5)
            );
            animation: rotate 3s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .logo img {
            width: 90%;
            height: 90%;
            object-fit: cover;
            border-radius: 20px;
            position: relative;
            z-index: 1;
        }
        
        .neon-text {
            font-size: 36px;
            font-weight: bold;
            margin: 15px 0;
            color: #fff;
            text-shadow: 
                0 0 7px #fff,
                0 0 10px #fff,
                0 0 21px #fff,
                0 0 42px #bc13fe,
                0 0 82px #bc13fe,
                0 0 92px #bc13fe,
                0 0 102px #bc13fe,
                0 0 151px #bc13fe;
            animation: flicker 1.5s infinite alternate;
        }
        
        @keyframes flicker {
            0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
              text-shadow: 
                0 0 7px #fff,
                0 0 10px #fff,
                0 0 21px #fff,
                0 0 42px #bc13fe,
                0 0 82px #bc13fe,
                0 0 92px #bc13fe,
                0 0 102px #bc13fe,
                0 0 151px #bc13fe;
            }
            20%, 24%, 55% {        
              text-shadow: none;
            }
        }
        
        .game-label {
            font-size: 18px;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }
        
        .features {
            background: rgba(71, 22, 153, 0.3);
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(138, 43, 226, 0.3);
            backdrop-filter: blur(5px);
        }
        
        .feature {
            margin: 15px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .feature span {
            margin-left: 10px;
        }
        
        .accuracy-label {
            background: linear-gradient(90deg, #f5515f, #ff7b00);
            color: white;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 16px;
            display: inline-block;
            margin: 10px 0;
            animation: pulse 2s infinite;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #ff4d4d, #f9cb28);
            color: white;
            border: none;
            padding: 18px 30px;
            font-size: 20px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            margin: 25px 0;
            box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 90%;
            max-width: 350px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(255, 255, 255, 0.1), 
                rgba(255, 255, 255, 0.5), 
                rgba(255, 255, 255, 0.1)
            );
            top: 0;
            left: -100%;
            transition: 0.5s;
        }
        
        .cta-button:hover:before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 77, 77, 0.5);
        }
        
        .telegram-icon {
            margin-right: 10px;
            font-size: 24px;
        }
        
        .timer-container {
            margin: 20px 0;
            position: relative;
        }
        
        .timer-label {
            font-size: 26px;
            margin-bottom: 15px;
            color: #ffcc00;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
            font-weight: bold;
        }
        
        .timer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }
        
        .timer-segment {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .timer-value {
            background: linear-gradient(to bottom, #330867, #30cfd0);
            padding: 18px;
            border-radius: 10px;
            font-size: 32px;
            font-weight: bold;
            color: #ffffff;
            min-width: 80px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .timer-unit {
            margin-top: 5px;
            font-size: 14px;
            color: #cccccc;
        }
        
        .benefits {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        
        .benefit {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            width: calc(50% - 15px);
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }
        
        .benefit:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .benefit-text {
            font-size: 14px;
            color: #e6e6e6;
        }
        
        .footer {
            margin-top: 30px;
            padding: 15px;
            font-size: 14px;
            color: #ccc;
            width: 100%;
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }
        
        .footer a {
            color: #66b3ff;
            text-decoration: none;
            position: relative;
        }
        
        .footer a:after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #66b3ff;
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }
        
        .footer a:hover:after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        
        .game-types {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        
        .game-type {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 14px;
            display: inline-block;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: float 3s ease-in-out infinite;
            animation-delay: calc(var(--delay) * 1s);
        }
        
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 15px 10px;
            }
            
            .header h1 {
                font-size: 20px;
            }
            
            .neon-text {
                font-size: 32px;
            }
            
            .cta-button {
                padding: 20px 30px;
                font-size: 22px;
                width: 95%;
            }
            
            .timer-value {
                font-size: 28px;
                min-width: 70px;
            }
            
            .benefit {
                width: 100%;
            }
            
            .game-types {
                flex-direction: column;
                align-items: center;
            }
        }
    