:root {
    /* Premium Color Palette */
    --primary-blue: #1a237e;
    /* Deep Royal Blue */
    --secondary-blue: #3949ab;
    /* Vibrant Blue */
    --accent-gold: #fbc02d;
    /* Rich Gold */
    --accent-gold-light: #fff59d;
    /* Pale Gold */
    --text-dark: #1e293b;
    /* Slate Black */
    --text-gray: #64748b;
    /* Slate Gray */
    --bg-light: #f8fafc;
    /* Cool White */
    --white: #ffffff;

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    --btn-gradient: linear-gradient(135deg, #fbc02d 0%, #f57f17 100%);
    /* Gold Gradient */
    --btn-gradient-hover: linear-gradient(135deg, #fdd835 0%, #f9a825 100%);
    --card-gradient: linear-gradient(145deg, #ffffff, #fdfbf7);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --glow-gold: 0 0 15px rgba(251, 192, 45, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
    /* Setup for nicer font if available, fallback to system */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.site-navigation {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* Glassmorphism */
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.brand-logo img {
    margin-right: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-blue);
    background: rgba(57, 73, 171, 0.08);
    /* Light blue tint */
}

.nav-link.highlight {
    background: var(--btn-gradient);
    color: var(--text-dark);
    /* Dark text on gold for contrast */
    box-shadow: 0 4px 12px rgba(249, 168, 37, 0.3);
}

.nav-link.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 168, 37, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.main-content {
    margin-top: 80px;
}

/* Hero / Download Section */
.download-section {
    background: var(--hero-gradient);
    position: relative;
    text-align: center;
    padding: 100px 20px;
    color: white;
    margin-bottom: 50px;
    overflow: hidden;
}

/* Subtle pattern overlay */
.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.download-section h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lead {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.download-button {
    display: inline-block;
    background: var(--btn-gradient);
    color: #000;
    /* Dark text for readability on Gold */
    border: none;
    padding: 20px 45px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(245, 127, 23, 0.4);
    position: relative;
    overflow: hidden;
}

.download-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 127, 23, 0.5);
    background: var(--btn-gradient-hover);
}

.version-info {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Content Sections */
.content-section {
    background: white;
    margin: 30px auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 1200px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--btn-gradient);
    /* Gold underline */
    border-radius: 3px;
}

.content-block {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #475569;
}

.content-block p {
    margin-bottom: 25px;
}

.content-block a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(57, 73, 171, 0.2);
    transition: all 0.2s;
}

.content-block a:hover {
    border-bottom-color: var(--secondary-blue);
    background: rgba(57, 73, 171, 0.05);
}

.content-block img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.content-block img:hover {
    transform: scale(1.01);
}

figcaption {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Specs Table */
.specs-table {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.specs-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
}

.specs-table th,
.specs-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.specs-table th {
    background: linear-gradient(to right, #1a237e, #283593);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background: #f8fafc;
}

.specs-table tr:hover {
    background: #f1f5f9;
}

/* Apps Showcase */
.apps-showcase {
    background: white;
    margin: 50px auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 1200px;
}

.app-card {
    display: flex;
    align-items: center;
    background: white;
    margin: 25px 0;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 100%;
    background: #cfd8dc;
    transition: 0.3s;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.app-card:hover::before {
    background: var(--primary-blue);
}

.app-card.featured {
    background: linear-gradient(135deg, #fff9c4 0%, #ffffff 50%);
    border: 1px solid #fff59d;
}

.app-card.featured::before {
    background: var(--accent-gold);
}

.app-rank {
    background: var(--text-gray);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
}

.app-card.featured .app-rank {
    background: var(--btn-gradient);
    color: #1a237e;
}

.app-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.app-content img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin-right: 25px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.app-card:hover .app-content img {
    transform: scale(1.05);
}

.app-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 700;
}

.app-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.withdrawal-info {
    font-size: 0.95rem;
    color: #059669;
    /* Emerald Green */
    font-weight: 600;
    background: #ecfdf5;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
}

.app-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    min-width: 140px;
}

.app-download-btn {
    background: var(--primary-blue);
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
}

.app-download-btn:hover {
    transform: translateY(-2px);
    background: var(--secondary-blue);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
    color: white;
}

.app-rating {
    color: #ffb300;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* FAQ & Reviews */
.faq-section,
.reviews-section {
    background: white;
    margin: 50px auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 1200px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary-blue);
}

.faq-question {
    padding: 24px;
    background: #f8fafc;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 400;
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
    color: #475569;
}

.user-review {
    background: #f8fafc;
    padding: 30px;
    margin: 25px 0;
    border-radius: 16px;
    border-left: 5px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.user-review .rating {
    color: #ffb300;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.user-review p {
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.user-review cite {
    color: var(--text-gray);
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-top: 10px;
}

/* Footer Modern Redesign */
.page-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
    margin-top: 100px;
    border-top: 4px solid var(--accent-gold);
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info-list .icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.responsible-gaming {
    background: rgba(251, 192, 45, 0.1);
    color: var(--accent-gold);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 600;
    border: 1px solid rgba(251, 192, 45, 0.2);
}

.copyright {
    color: #64748b;
    font-size: 0.85rem;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-list a:hover {
        transform: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section,
.apps-showcase,
.faq-section {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .download-section h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .app-card {
        flex-direction: column;
        text-align: center;
    }

    .app-card::before {
        width: 100%;
        height: 6px;
        top: 0;
        left: 0;
    }

    .app-rank {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .app-content {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .app-content img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .app-stats {
        flex-direction: column;
        gap: 10px;
    }

    .app-actions {
        width: 100%;
        margin-left: 0;
    }
}

/* --- Standardized App Page Styles --- */

.app-hero {
    background: var(--hero-gradient);
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Pattern overlay for app hero too */
.app-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.app-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.app-icon-container img {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.app-icon-container img:hover {
    transform: scale(1.05) rotate(2deg);
}

.app-hero-info {
    flex: 1;
    min-width: 300px;
}

.app-hero-info h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.app-hero-info p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 400;
}

.app-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.app-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
}

.hero-download-btn {
    display: inline-block;
    background: var(--btn-gradient);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.hero-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: var(--btn-gradient-hover);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.main-content-area article {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
}

.main-content-area h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.main-content-area h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--btn-gradient);
    border-radius: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-blue);
    background: white;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
}

.sidebar-card h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.info-row span:first-child {
    color: var(--text-gray);
    font-weight: 500;
}

.info-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.sidebar-download-btn {
    display: block;
    background: var(--primary-blue);
    color: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.sidebar-download-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .two-column {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .app-hero {
        padding: 50px 20px;
        text-align: center;
    }

    .app-hero-content {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
    }

    .app-hero-info h1 {
        font-size: 2.2rem;
    }

    .app-stats-row {
        justify-content: center;
    }

    .hero-download-btn {
        width: 100%;
        text-align: center;
    }
}

/* --- Similar Apps Section --- */
.similar-apps {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.similar-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #f1f5f9;
}

.similar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-blue);
}

.similar-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #f1f5f9;
}

.similar-info h3 {
    margin: 15px 0 10px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.view-btn {
    display: inline-block;
    padding: 8px 25px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.view-btn:hover {
    background: var(--primary-blue);
    color: white;
}