        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #0a0a1a;
            overflow-x: hidden;
        }
        
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }
        
        .star:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
        .star:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
        .star:nth-child(3) { top: 80%; left: 40%; animation-delay: 2s; }
        .star:nth-child(4) { top: 30%; left: 70%; animation-delay: 0.5s; }
        .star:nth-child(5) { top: 10%; left: 90%; animation-delay: 1.5s; }
        .star:nth-child(6) { top: 70%; left: 10%; animation-delay: 2.5s; }
        .star:nth-child(7) { top: 40%; left: 30%; animation-delay: 3s; }
        .star:nth-child(8) { top: 90%; left: 60%; animation-delay: 0.3s; }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }
        
        .navbar {
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00D4FF, #5D26C1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #00D4FF;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(45deg, #00D4FF, #5D26C1);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }
        
        .hero {
            background: radial-gradient(ellipse at center, rgba(93, 38, 193, 0.3) 0%, rgba(0, 212, 255, 0.1) 70%, transparent 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 100px;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00D4FF, #5D26C1, #FF6B9D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }
        
        .hero-tagline {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.9;
            color: #B8C5D6;
        }
        
        .mega-jackpot {
            background: linear-gradient(135deg, rgba(93, 38, 193, 0.2), rgba(0, 212, 255, 0.2));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .jackpot-label {
            font-size: 1.2rem;
            color: #B8C5D6;
            margin-bottom: 10px;
        }
        
        .jackpot-amount {
            font-size: 4rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00D4FF, #FF6B9D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .next-draw {
            color: #B8C5D6;
            font-size: 1rem;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #5D26C1, #00D4FF);
            color: white;
            padding: 20px 60px;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 30px rgba(93, 38, 193, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(93, 38, 193, 0.6);
        }
        
        .features-section {
            background: linear-gradient(180deg, rgba(15, 15, 35, 0.9) 0%, rgba(93, 38, 193, 0.1) 100%);
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            color: white;
            background: linear-gradient(45deg, #00D4FF, #5D26C1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            color: white;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            background: linear-gradient(45deg, #00D4FF, #5D26C1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #00D4FF;
        }
        
        .feature-card p {
            line-height: 1.8;
            color: #B8C5D6;
        }
        
        .game-section {
            background: rgba(0, 212, 255, 0.05);
            padding: 100px 0;
        }
        
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .game-info h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            color: white;
        }
        
        .game-types {
            margin: 40px 0;
        }
        
        .game-type {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            color: white;
        }
        
        .game-type h4 {
            color: #00D4FF;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .game-type p {
            color: #B8C5D6;
        }
        
        .cosmic-visual {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .orbital-system {
            position: relative;
            width: 300px;
            height: 300px;
            margin: 0 auto 40px;
        }
        
        .center-star {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
            z-index: 10;
        }
        
        .star-core {
            font-size: 2rem;
            animation: pulse 2s infinite;
        }
        
        .jackpot-display {
            font-size: 0.8rem;
            font-weight: bold;
            color: #fff;
            margin-top: 5px;
        }
        
        .orbit {
            position: absolute;
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .orbit-1 {
            width: 120px;
            height: 120px;
            animation: rotate 10s linear infinite;
        }
        
        .orbit-2 {
            width: 180px;
            height: 180px;
            animation: rotate 15s linear infinite reverse;
        }
        
        .orbit-3 {
            width: 240px;
            height: 240px;
            animation: rotate 20s linear infinite;
        }
        
        .planet {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .planet-1 {
            top: -15px;
            left: calc(50% - 15px);
        }
        
        .planet-2 {
            top: -15px;
            left: calc(50% - 15px);
        }
        
        .planet-3 {
            top: -15px;
            left: calc(50% - 15px);
        }
        
        .cosmic-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            font-size: 1rem;
            animation: float 4s ease-in-out infinite;
        }
        
        .particle-1 {
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }
        
        .particle-2 {
            top: 20%;
            right: 15%;
            animation-delay: 1s;
        }
        
        .particle-3 {
            bottom: 25%;
            left: 10%;
            animation-delay: 2s;
        }
        
        .particle-4 {
            bottom: 10%;
            right: 20%;
            animation-delay: 3s;
        }
        
        .play-instructions h3 {
            color: #00D4FF;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .play-instructions p {
            color: #B8C5D6;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .cosmic-play-btn {
            background: linear-gradient(45deg, #5D26C1, #00D4FF);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(93, 38, 193, 0.3);
        }
        
        .cosmic-play-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(93, 38, 193, 0.5);
        }
        
        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .stats-section {
            background: rgba(93, 38, 193, 0.1);
            padding: 80px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 20px;
            color: white;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00D4FF, #FF6B9D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 15px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: #B8C5D6;
        }
        
        .winners-section {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(93, 38, 193, 0.1));
            padding: 100px 0;
            text-align: center;
        }
        
        .winners-carousel {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .winner-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            max-width: 300px;
            color: white;
        }
        
        .winner-amount {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00D4FF, #FF6B9D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }
        
        .winner-info {
            color: #B8C5D6;
        }
        
        .footer {
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(20px);
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: #00D4FF;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section ul li a {
            color: #B8C5D6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #00D4FF;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #B8C5D6;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        
        .modal-header {
            background: linear-gradient(135deg, #5D26C1, #00D4FF);
            color: white;
            padding: 30px;
            position: relative;
        }
        
        .modal-header h2 {
            margin: 0;
            font-size: 1.6rem;
            font-weight: 600;
        }
        
        .close-btn {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .modal-body {
            padding: 40px 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group input {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            backdrop-filter: blur(10px);
        }
        
        .form-group input::placeholder {
            color: #B8C5D6;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #00D4FF;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
        }
        
        .register-btn {
            width: 100%;
            background: linear-gradient(45deg, #5D26C1, #00D4FF);
            color: white;
            padding: 20px;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(93, 38, 193, 0.4);
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .jackpot-amount {
                font-size: 2.5rem;
            }
            
            .game-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .cosmic-visual {
                padding: 30px 20px;
            }
            
            .orbital-system {
                width: 250px;
                height: 250px;
            }
            
            .center-star {
                width: 60px;
                height: 60px;
            }
            
            .star-core {
                font-size: 1.5rem;
            }
            
            .jackpot-display {
                font-size: 0.7rem;
            }
            
            .orbit-1 {
                width: 100px;
                height: 100px;
            }
            
            .orbit-2 {
                width: 150px;
                height: 150px;
            }
            
            .orbit-3 {
                width: 200px;
                height: 200px;
            }
            
            .planet {
                width: 25px;
                height: 25px;
                font-size: 1.2rem;
            }
            
            .planet-1 {
                top: -12px;
                left: calc(50% - 12px);
            }
            
            .planet-2 {
                top: -12px;
                left: calc(50% - 12px);
            }
            
            .planet-3 {
                top: -12px;
                left: calc(50% - 12px);
            }
            
            .modal-content {
                width: 95%;
                margin: 20px;
            }
        }

                        .img{
            display: flex !important;
            justify-content: center!important;
            align-items: center!important;
            margin-top: 15px!important;

        }

        .img img{
            width: 70px!important;
            padding-left: 15px!important;
        }