/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fef9e7; /* Light cream / pale yellow */
    color: #333;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Header Styles */
.header {
    background-color: #1e3a8a; /* Dark navy blue */
    padding: 12px 10px;
    margin-bottom: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 150px;
    height: 45px;
    object-fit: contain;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-login, .btn-register {
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0; /* Sharp corners - no rounding */
    min-width: 100px;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: #16a34a; /* Premium green */
    color: white;
    border: 2px solid #16a34a;
}

.btn-login:hover {
    background-color: #15803d;
}

.btn-register {
    background-color: #fbbf24; /* Premium yellow */
    color: #1e3a8a;
    border: 2px solid #fbbf24;
}

.btn-register:hover {
    background-color: #f59e0b;
}

/* Hero Section */
.hero-section {
    background-color: #1e3a8a; /* Dark navy blue */
    padding: 30px 15px;
    margin-bottom: 20px;
    border-bottom: 5px solid #dc2626;
}

.hero-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    color: white;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 16px;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.android-btn {
    background-color: #059669;
    color: white;
    border-color: #10b981;
}

.ios-btn {
    background-color: #3b82f6;
    color: white;
    border-color: #60a5fa;
}

.btn-icon {
    font-size: 24px;
}

.btn-text {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 0;
    display: inline-block;
}

.feature-text {
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    max-width: 100px;
}

/* Main Content Styles */
.main-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Section Styles */
.section {
    background-color: #1e3a8a; /* Dark navy blue */
    margin-bottom: 20px;
    padding: 0;
    border-radius: 0;
    border: 2px solid #1e3a8a;
}

.section-heading {
    background-color: #000; /* Black bar for headings */
    padding: 14px 15px;
    margin-bottom: 0;
}

.section-heading h2 {
    color: white;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.4;
}

.section-content {
    padding: 25px 15px;
    color: white;
}

.section-content p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
}

.satta-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.satta-list li {
    margin-bottom: 10px;
    color: #e5e7eb;
    font-size: 14px;
}

/* Mobile App Preview Section */
.contact-button-container {
    display: flex;
    justify-content: center;
    padding: 25px 15px 15px;
    background-color: #1e3a8a;
}

.contact-button {
    background-color: #dc2626; /* Red button */
    color: white;
    padding: 15px 40px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid #ef4444;
}

.mobile-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 30px;
    background-color: #1e3a8a;
}

.mobile-frame {
    width: 280px;
    height: 500px;
    object-fit: cover;
    border: 3px solid #fbbf24;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.app-icon {
    font-size: 24px;
    background-color: rgba(251, 191, 36, 0.2);
    padding: 10px;
    border-radius: 0;
    display: inline-block;
}

.app-text {
    color: #fbbf24;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 15px;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-download.apk {
    background-color: #059669;
    color: white;
    border-color: #10b981;
}

.btn-download.ios {
    background-color: #3b82f6;
    color: white;
    border-color: #60a5fa;
}

.download-icon {
    font-size: 24px;
}

.download-text {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.final-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.final-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 18px;
    gap: 20px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    text-align: center;
}

.final-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.apk-final {
    background-color: #059669;
    color: white;
    border-color: #10b981;
}

.ios-final {
    background-color: #3b82f6;
    color: white;
    border-color: #60a5fa;
}

.final-icon {
    font-size: 32px;
}

.final-text {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.final-text small {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

.download-info {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid #fbbf24;
}

.download-info p {
    color: #e5e7eb;
    font-size: 13px;
    margin-bottom: 0;
}

/* Features & Benefits */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 15px;
}

.feature-box {
    background-color: #1e40af; /* Slightly lighter navy for distinction */
    padding: 22px 18px;
    border-radius: 0;
    border: 2px solid #3b82f6;
}

.feature-box h3 {
    color: #fbbf24;
    font-size: 17px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-box p {
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

/* Games List */
.games-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 25px 15px 15px;
    background-color: #1e3a8a;
}

.game-item {
    background-color: #1e40af;
    color: white;
    padding: 12px 22px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 15px;
    border: 2px solid #3b82f6;
    min-width: 120px;
    text-align: center;
}

.game-description {
    padding: 20px 15px 10px;
    background-color: #1e3a8a;
}

.game-description h3 {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.game-description p {
    color: white;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid #dc2626;
}

/* Number Display */
.number-display {
    padding: 15px 15px 30px;
    background-color: #1e3a8a;
    text-align: center;
}

.number-format {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    color: #fbbf24;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 12px;
    padding: 12px;
    background-color: #000;
    border: 2px solid #dc2626;
}

/* Video Section */
.video-container {
    padding: 20px 15px 30px;
    background-color: #1e3a8a;
}

.video-wrapper {
    background-color: #000;
    padding: 10px;
    border: 3px solid #fbbf24;
    margin-bottom: 20px;
}

.video-wrapper video {
    display: block;
    height: 250px;
    object-fit: cover;
}

.video-note {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}

/* Call to Action Section */
.cta-section {
    background-color: #fef9e7; /* Light background */
    padding: 35px 15px;
    margin: 20px 0;
    border-top: 5px solid #dc2626;
    border-bottom: 5px solid #dc2626;
    text-align: center;
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.phone-icon {
    font-size: 60px;
    margin-bottom: 15px;
    color: #dc2626;
}

.cta-text {
    color: #dc2626; /* Red text */
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-subtext {
    color: #1e3a8a;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-phone {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.cta-telegram {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.cta-call-btn, .cta-telegram-btn {
    display: inline-block;
    padding: 18px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.cta-call-btn {
    background-color: #dc2626;
    color: white;
    border-color: #ef4444;
}

.cta-call-btn:hover {
    background-color: #b91c1c;
}

.cta-telegram-btn {
    background-color: #1e3a8a;
    color: white;
    border-color: #3b82f6;
}

.cta-telegram-btn:hover {
    background-color: #1e40af;
}

/* Footer */
.footer {
    background-color: #1e3a8a; /* Dark navy blue */
    padding: 30px 15px 25px;
    margin-top: 30px;
    border-top: 5px solid #fbbf24;
}

.footer-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 180px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-contact {
    background-color: #1e40af;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0;
    border: 2px solid #3b82f6;
}

.contact-item {
    color: white;
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.footer-warning {
    background-color: rgba(220, 38, 38, 0.2);
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #dc2626;
}

.footer-warning p {
    color: #fecaca;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
}

.copyright {
    color: #cbd5e1;
    font-size: 13px;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

/* Floating Elements */
.floating-telegram {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0088cc;
    color: white;
    padding: 15px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.floating-telegram:hover {
    background-color: #0077b5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.telegram-icon {
    font-size: 20px;
}

.telegram-text {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.floating-top {
    position: fixed;
    bottom: 85px;
    right: 20px;
    background-color: #dc2626;
    color: white;
    padding: 12px 18px;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.floating-top:hover {
    background-color: #b91c1c;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-login, .btn-register {
        flex: 1;
        min-width: auto;
        padding: 10px 5px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-btn, .btn-download, .final-download-btn {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .btn-text, .download-text, .final-text {
        font-size: 14px;
    }
    
    .feature-box h3 {
        font-size: 15px;
    }
    
    .feature-box p {
        font-size: 13px;
    }
    
    .game-item {
        padding: 10px 15px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .cta-text {
        font-size: 24px;
    }
    
    .cta-phone {
        font-size: 24px;
    }
    
    .floating-telegram, .floating-top {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .floating-top {
        bottom: 80px;
    }
}
/* Prevents double-tap to zoom on mobile */
html, body {
    touch-action: manipulation;
}