        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a0a2e, #16213e, #1a237e);
            color: white;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00d4ff, #ff0080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #00d4ff;
        }

        .nav-links a.active {
            color: #00d4ff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #ff0080);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: linear-gradient(45deg, #00d4ff, #ff0080);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .hero-section {
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(255, 0, 128, 0.15) 0%, transparent 70%);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(3px 3px at 30px 40px, #ffffff, transparent),
                radial-gradient(2px 2px at 60px 80px, #00d4ff, transparent),
                radial-gradient(1px 1px at 100px 50px, #ff0080, transparent),
                radial-gradient(2px 2px at 150px 20px, #ffffff, transparent);
            background-repeat: repeat;
            background-size: 250px 150px;
            animation: stars 25s linear infinite;
            opacity: 0.4;
        }

        @keyframes stars {
            from { transform: translateY(0px) translateX(0px); }
            to { transform: translateY(-150px) translateX(-50px); }
        }

        .hero-content {
            max-width: 900px;
            z-index: 2;
            position: relative;
            padding-top: 160px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff0080, #00d4ff, #ffff00, #ff8800);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .jackpot-carousel {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .jackpot-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            min-width: 200px;
            text-align: center;
        }

        .jackpot-game {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .jackpot-amount {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffff00;
            text-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
        }

        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 5rem;
        }

        .featured-section {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00d4ff, #ff0080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .featured-game {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 128, 0.15));
            backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .featured-game::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .featured-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }

        .featured-info h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #ff0080;
        }

        .featured-info p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .featured-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .highlight-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
        }

        .highlight-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00d4ff;
        }

        .highlight-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .games-collection {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .game-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00d4ff, #ff0080, #ffff00);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .game-card:hover::before {
            transform: translateX(0);
        }

        .game-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.25);
            border-color: rgba(0, 212, 255, 0.5);
        }

        .game-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .game-icon {
            font-size: 2.5rem;
            margin-right: 1rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #00d4ff, #ff0080);
            border-radius: 15px;
        }

        .game-title {
            font-size: 1.6rem;
            background: linear-gradient(45deg, #00d4ff, #ff0080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .game-description {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .prize-structure {
            background: rgba(0, 0, 0, 0.2);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }

        .prize-structure h4 {
            color: #00d4ff;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .prize-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 0.5rem;
        }

        .prize-row {
            display: contents;
        }

        .prize-match, .prize-amount {
            padding: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .prize-match {
            font-weight: bold;
        }

        .prize-amount {
            text-align: right;
            color: #ffff00;
        }

        .jackpot-highlight {
            color: #ff0080 !important;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
        }

        .game-features {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: rgba(0, 212, 255, 0.2);
            color: #00d4ff;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .draw-schedule {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 3rem;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .schedule-item {
            background: rgba(0, 0, 0, 0.2);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
        }

        .schedule-game {
            font-size: 1.2rem;
            color: #00d4ff;
            margin-bottom: 0.5rem;
        }

        .schedule-time {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .bonus-features {
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 0, 128, 0.1));
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 140, 0, 0.3);
            margin-bottom: 3rem;
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .bonus-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .bonus-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .bonus-title {
            color: #ff8800;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 3rem 2rem 1rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #00d4ff;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: right 0.3s ease;
                gap: 2rem;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 0.5rem 1rem;
            }

            .hamburger {
                display: flex;
            }
            
            .games-collection {
                grid-template-columns: 1fr;
            }
            
            .featured-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .jackpot-carousel {
                flex-direction: column;
                align-items: center;
            }
            
            .schedule-grid {
                grid-template-columns: 1fr;
            }
            
            .bonus-grid {
                grid-template-columns: 1fr;
            }
        }

                .img{
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .img img{
            width: 70px;
            padding-left: 15px;
        }