/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-login {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-login:hover {
    background: #667eea;
    color: white;
}

.btn-register {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Header */
.header {
    background: rgb(202, 202, 202);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #667eea;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu {
    background: rgb(184, 184, 184);
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.close-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.close-menu span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.close-menu span:last-child {
    transform: rotate(-45deg) translate(0px, 0px);
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: white;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Steps List */
.steps-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* App Content */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.game-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sport-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.sport-category:hover {
    transform: translateY(-5px);
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.security-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Table Container */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.payment-table th,
.payment-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.payment-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.payment-table tr:hover {
    background: #f8f9fa;
}

/* Support Features */
.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Internal Links */
.internal-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* External References */
.external-references {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.external-references ul {
    list-style: none;
    margin-top: 1rem;
}

.external-references li {
    margin-bottom: 0.5rem;
}

.external-references a {
    color: #667eea;
    text-decoration: none;
}

.external-references a:hover {
    text-decoration: underline;
}

/* Note */
.note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-description h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-description p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

.footer-bottom p {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .logo img {
        height: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .internal-links {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 2rem 0;
    }

    .hero {
        padding: 2rem 0;
    }

    .features-grid,
    .games-grid,
    .sports-grid,
    .security-features,
    .support-features {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 1rem;
    }
}

/* Animation for mobile menu */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu {
    animation: slideIn 0.3s ease;
}

/* Additional styles for specific sections */
.benefits-grid,
.coverage-item,
.market-options,
.multiples-specials,
.bet-builder,
.slip-controls,
.ios-tips,
.update-info,
.issues-list,
.ios-content,
.mobile-content,
.slots-grid,
.live-tables-grid,
.table-games-grid,
.rtp-info,
.bankroll-tools,
.mobile-features,
.rules-list,
.cricket-coverage,
.football-coverage,
.kabaddi-coverage,
.login-methods,
.browser-login,
.security-points,
.documents-list,
.verification-info,
.security-tips-list,
.device-safety,
.profile-settings,
.account-steps,
.app-instructions,
.casino-info,
.sportsbook-info,
.security-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card,
.coverage-item,
.market-option,
.multiple-special,
.builder-feature,
.control-item,
.tip,
.update-item,
.issue-item,
.ios-tip,
.mobile-feature,
.rule-item,
.rtp-item,
.tool-item,
.casino-info-item,
.sportsbook-info-item,
.security-info-item,
.account-step,
.app-instruction,
.document-item,
.info-item,
.tip-item,
.safety-item,
.setting-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover,
.coverage-item:hover,
.market-option:hover,
.multiple-special:hover,
.builder-feature:hover,
.control-item:hover,
.tip:hover,
.update-item:hover,
.issue-item:hover,
.ios-tip:hover,
.mobile-feature:hover,
.rule-item:hover,
.rtp-item:hover,
.tool-item:hover,
.casino-info-item:hover,
.sportsbook-info-item:hover,
.security-info-item:hover,
.account-step:hover,
.app-instruction:hover,
.document-item:hover,
.info-item:hover,
.tip-item:hover,
.safety-item:hover,
.setting-item:hover {
    transform: translateY(-5px);
}

/* Specific table styles */
.compatibility-table,
.permissions-table,
.login-methods-table,
.category-table,
.payments-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.compatibility-table th,
.compatibility-table td,
.permissions-table th,
.permissions-table td,
.login-methods-table th,
.login-methods-table td,
.category-table th,
.category-table td,
.payments-table th,
.payments-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.compatibility-table th,
.permissions-table th,
.login-methods-table th,
.category-table th,
.payments-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.compatibility-table tr:hover,
.permissions-table tr:hover,
.login-methods-table tr:hover,
.category-table tr:hover,
.payments-table tr:hover {
    background: #f8f9fa;
}

/* Specific section styles */
.why-use-app,
.compatibility,
.android-installation,
.ios-access,
.updates-permissions,
.troubleshooting,
.features,
.popular-games,
.game-providers,
.how-to-start,
.mobile-casino,
.payments,
.rules,
.ways-to-login,
.password-recovery,
.account-verification,
.security-tips,
.manage-profile,
.account-help,
.app-help,
.casino-help,
.sportsbook-help,
.payments-help,
.security-help {
    padding: 4rem 0;
}

.why-use-app:nth-child(even),
.compatibility:nth-child(even),
.android-installation:nth-child(even),
.ios-access:nth-child(even),
.updates-permissions:nth-child(even),
.troubleshooting:nth-child(even),
.features:nth-child(even),
.popular-games:nth-child(even),
.game-providers:nth-child(even),
.how-to-start:nth-child(even),
.mobile-casino:nth-child(even),
.payments:nth-child(even),
.rules:nth-child(even),
.ways-to-login:nth-child(even),
.password-recovery:nth-child(even),
.account-verification:nth-child(even),
.security-tips:nth-child(even),
.manage-profile:nth-child(even),
.account-help:nth-child(even),
.app-help:nth-child(even),
.casino-help:nth-child(even),
.sportsbook-help:nth-child(even),
.payments-help:nth-child(even),
.security-help:nth-child(even) {
    background: white;
}
