<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700;900&amp;display=swap');
        
        :root {
            --neon-pink: #ff00ff;
            --neon-blue: #00f2ff;
            --neon-purple: #9d00ff;
            --dark: #0f0f1a;
            --darker: #070711;
            --light: #f0f0f0;
            --glow-pink: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
            --glow-blue: 0 0 10px #00f2ff, 0 0 20px #00f2ff, 0 0 30px #00f2ff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Exo 2', sans-serif;
        }
        
        body {
            background-color: var(--dark);
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(0, 242, 255, 0.1) 0%, transparent 30%),
                linear-gradient(to bottom, var(--dark), var(--darker));
            color: var(--light);
            line-height: 1.6;
            background-attachment: fixed;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: rgba(15, 15, 26, 0.8);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 0, 255, 0.3);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: white;
            text-decoration: none;
            position: relative;
            text-transform: uppercase;
        }
        
        .logo span:first-child {
            color: var(--neon-pink);
            text-shadow: var(--glow-pink);
        }
        
        .logo span:last-child {
            color: var(--neon-blue);
            text-shadow: var(--glow-blue);
        }
        
        .neon-btn {
            position: relative;
            display: inline-block;
            padding: 10px 25px;
            color: var(--neon-blue);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            overflow: hidden;
            transition: 0.2s;
            border: 2px solid var(--neon-blue);
            border-radius: 30px;
            background: transparent;
            box-shadow: 0 0 10px var(--neon-blue), inset 0 0 10px var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
        }
        
        .neon-btn:hover {
            color: var(--dark);
            background: var(--neon-blue);
            box-shadow: 0 0 20px var(--neon-blue);
        }
        
        .neon-btn-pink {
            color: var(--neon-pink);
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 10px var(--neon-pink), inset 0 0 10px var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        .neon-btn-pink:hover {
            color: var(--dark);
            background: var(--neon-pink);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://via.placeholder.com/1920x1080');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 40px;
            border-radius: 10px;
            background: rgba(15, 15, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 0, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 900;
            background-image: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        
        .hero h1::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            bottom: -10px;
            left: 0;
            background-image: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
            box-shadow: 0 0 10px var(--neon-pink);
            border-radius: 5px;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--light);
            opacity: 0.9;
        }
        
        .slots-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            text-transform: uppercase;
            font-weight: 900;
            display: inline-block;
            background-image: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            bottom: -15px;
            left: 25%;
            background-image: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
            border-radius: 4px;
            box-shadow: var(--glow-blue);
        }
        
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .slot-card {
            background: rgba(15, 15, 26, 0.6);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .slot-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple), var(--neon-pink));
            background-size: 400%;
            z-index: -1;
            border-radius: 12px;
            opacity: 0;
            transition: 0.5s;
        }
        
        .slot-card:hover::before {
            opacity: 1;
            animation: animate 20s linear infinite;
        }
        
        @keyframes animate {
            0% {
                background-position: 0 0;
            }
            50% {
                background-position: 400% 0;
            }
            100% {
                background-position: 0 0;
            }
        }
        
        .slot-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        .slot-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .slot-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .slot-card:hover .slot-img img {
            transform: scale(1.1);
        }
        
        .slot-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--neon-pink);
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            box-shadow: 0 0 10px var(--neon-pink);
        }
        
        .slot-content {
            padding: 25px;
            position: relative;
        }
        
        .slot-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }
        
        .slot-text {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }
        
        .slot-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .slot-rtp {
            font-weight: 700;
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
        }
        
        .promo-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .promo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://via.placeholder.com/1920x1080');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: -1;
        }
        
        .promo-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(15, 15, 26, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(255, 0, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .promo-content::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--neon-pink), transparent 70%);
            top: -250px;
            left: -250px;
            opacity: 0.1;
        }
        
        .promo-content::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--neon-blue), transparent 70%);
            bottom: -250px;
            right: -250px;
            opacity: 0.1;
        }
        
        .promo-text {
            flex: 1;
            padding-right: 50px;
        }
        
        .promo-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 900;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        .promo-text p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        .promo-bonus {
            flex: 1;
            text-align: center;
            padding: 30px;
            background: rgba(7, 7, 17, 0.7);
            border-radius: 15px;
            border: 1px solid rgba(0, 242, 255, 0.3);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
        }
        
        .bonus-amount {
            font-size: 72px;
            font-weight: 900;
            margin-bottom: 20px;
            background-image: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bonus-info {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        .content-section {
            padding: 80px 0;
            background: rgba(15, 15, 26, 0.5);
        }
        
        .content {
            padding: 30px;
            background: rgba(7, 7, 17, 0.7);
            border-radius: 15px;
            border: 1px solid rgba(157, 0, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .footer {
            background-color: var(--darker);
            padding: 60px 0 20px;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            top: 0;
            left: 0;
            background-image: linear-gradient(to right, transparent, var(--neon-pink), var(--neon-blue), transparent);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: white;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            bottom: 0;
            left: 0;
            background-image: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-image: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-links a:hover::before {
            width: 100%;
        }
        
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .promo-content {
                flex-direction: column;
                padding: 30px;
            }
            
            .promo-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            
            .bonus-amount {
                font-size: 48px;
            }
            
            .hero-content {
                padding: 30px;
            }
        }</pre></body></html>