        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .hero-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .play-button {
            background: #ff6b35;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            transition: background 0.3s ease;
        }
        
        .play-button:hover {
            background: #e55a2d;
        }
        
        .main-content {
            padding: 60px 0;
        }
        
        .intro-section {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .intro-section p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 4px solid #2a5298;
        }
        
        .feature-box h3 {
            color: #2a5298;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .feature-box p {
            color: #666;
            line-height: 1.6;
        }
        
        .highlight-box {
            background: #2a5298;
            color: white;
            padding: 20px;
            border-radius: 5px;
            margin: 10px 0;
            font-weight: bold;
        }
        
        .how-to-play {
            background: white;
            padding: 80px 0;
            margin: 60px 0;
        }
        
        .how-to-play-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .how-to-play-text h2 {
            color: #333;
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .how-to-play-text p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .play-steps {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .play-steps li {
            background: #f8f9fa;
            color: #555;
            font-size: 1rem;
            position: relative;
        }
        
        .play-steps li:before {
            content: "•";
            color: #2a5298;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 10px;
        }
        
        .play-now-btn {
            background: #e74c3c;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 20px;
        }
        
        .play-now-btn:hover {
            background: #c0392b;
        }
        
        .how-to-play-image {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lottery-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lottery-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 8px, transparent 8px),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 6px, transparent 6px),
                radial-gradient(circle at 40% 70%, rgba(255,255,255,0.15) 4px, transparent 4px),
                radial-gradient(circle at 90% 80%, rgba(255,255,255,0.2) 5px, transparent 5px),
                radial-gradient(circle at 10% 90%, rgba(255,255,255,0.25) 7px, transparent 7px);
        }
        
        .static-lottery-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

	.static-lottery-content img{
	max-width: 100%;
	}
        
        .static-lottery-content .main-text {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .static-lottery-content .sub-text {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .faq-section {
            background: white;
            padding: 50px 0;
            margin-top: 40px;
        }
        
        .faq-section h2 {
            text-align: center;
            color: #2a5298;
            font-size: 2rem;
            margin-bottom: 40px;
        }
        
        .faq-item {
            margin-bottom: 30px;
            padding: 20px;
            border-left: 4px solid #2a5298;
            background: #f8f9fa;
        }
        
        .faq-question {
            font-weight: bold;
            color: #2a5298;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .faq-answer {
            color: #555;
            line-height: 1.7;
        }
        
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 30px 0;
        }
        
        .stats-bar {
            background: #fff;
            padding: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #2a5298;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 450px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
        .modal-header {
            background: #2a5298;
            color: white;
            padding: 20px 25px;
            position: relative;
        }
        
        .modal-header h2 {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .close-btn {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .modal-body {
            padding: 30px 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            background-color: #f8f9fa;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #2a5298;
            background-color: white;
        }
        
        .form-group input::placeholder {
            color: #999;
        }
        
        .register-btn {
            width: 100%;
            background: #e74c3c;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .register-btn:hover {
            background: #c0392b;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }
            
            .hero-text {
                font-size: 1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .modal-body {
                padding: 20px;
            }
            
            .how-to-play-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .how-to-play-text h2 {
                font-size: 1.8rem;
            }
            
            .how-to-play-image {
                height: 300px;
            }
            
            .lottery-ball {
                width: 45px;
                height: 45px;
                font-size: 0.9rem;
            }
        }

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

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

        footer a{

            text-decoration: none;
            color: rgb(0, 89, 255);
        }