/* Fonts are preconnected and loaded in parallel via HTML link tags for performance optimization */

:root {
    --brand-primary: #7b2cbf;
    --brand-dark: #5a189a;
    --brand-light: #9d4edd;
    --brand-gradient: linear-gradient(135deg, #8f24d3 0%, #5a189a 100%);
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-tab-inactive: #e2e8f0;
    --text-primary: #1e1b4b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent-green: #22c55e;
    --accent-purple: #7b2cbf;
    --border-color: rgba(123, 44, 191, 0.08);
    --shadow-soft: 0 4px 20px rgba(123, 44, 191, 0.03);
    --shadow-hover: 0 10px 30px rgba(123, 44, 191, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    padding-bottom: 50px;
    opacity: 0;
    animation: pageFadeIn 0.6s ease forwards;
}

@keyframes pageFadeIn {
    to { opacity: 1; }
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navbar */
.navbar {
    background: var(--brand-primary);
    padding: 14px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.navbar-brand .logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.navbar-brand .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

/* Navbar Toggle Button */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.navbar-toggle:hover {
    transform: scale(1.05);
}

.navbar-toggle svg {
    width: 28px;
    height: 28px;
}

/* System Alert Bar */
.system-alert {
    background-color: var(--brand-dark);
    color: #ffffff;
    text-align: center;
    padding: 8px 5%;
    font-size: 12px;
    font-weight: 600;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.05);
}

/* Main Layout Wrapper */
.main-wrapper {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 15px;
}

/* Redesigned Hero/Header Area for All Yono Games (index.php) */
.index-hero-card {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 30px;
    position: relative;
}

.index-hero-info {
    flex: 1.2;
    padding-right: 40px;
}

.index-hero-info h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.1;
    margin-bottom: 16px;
}

.index-hero-info h1 .purple-title {
    color: var(--brand-primary);
    display: block;
    font-size: 54px;
    margin-top: 5px;
}

.index-hero-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 480px;
}

.index-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.index-hero-stats {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 20px;
}

.index-stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
}

.index-stat-pill svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-primary);
    flex-shrink: 0;
}

.stat-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.stat-text-block .stat-num {
    font-size: 15px;
    font-weight: 800;
    color: #1e1b4b;
}

.stat-text-block .stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
}

.index-hero-icon {
    width: 200px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.index-hero-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(123, 44, 191, 0.25));
    animation: floatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

/* Crawling gamepad animations */
.gamepad-outline {
    stroke-dasharray: 0;
}

/* Buttons */
.btn-pill {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-filled {
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(123, 44, 191, 0.15);
}

.btn-filled:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(123, 44, 191, 0.25);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline:hover {
    background: rgba(123, 44, 191, 0.05);
    transform: translateY(-1px);
}

.btn-outline:hover {
    background: rgba(123, 44, 191, 0.05);
    transform: translateY(-1px);
}

.btn-outline:hover {
    background: rgba(123, 44, 191, 0.04);
    transform: translateY(-2px);
}

/* Featured App / Hero Section (download.php style) */
.hero-section {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 30px;
    position: relative;
}

.hero-content {
    flex: 1.2;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-content h1 .brand-title {
    color: var(--brand-primary);
    display: block;
    font-size: 54px;
    margin-top: 5px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #1e1b4b;
    margin: 8px 0;
}

.hero-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-media {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Horizontal Black Stats Card (download.php) */
.stats-bar-card {
    background-color: #0b091a;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #ffffff;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-light);
}

.stat-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

/* Grey Highlight Text Alert Line */
.text-alert-line {
    font-size: 13px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 20px;
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 12px;
}

/* Simple Intro Summary */
.intro-summary {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 30px;
}

.intro-summary p {
    margin-bottom: 15px;
}

/* Two Column Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 45px;
}

.column-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1e1b4b;
}

.column-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}


/* Accordion Styling */
.accordion-wrapper {
    margin-bottom: 25px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: rgba(123, 44, 191, 0.02);
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-header {
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background-color: rgba(123, 44, 191, 0.04);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-primary);
}

.accordion-header-left svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.accordion-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: var(--brand-primary);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: #ffffff;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 14px 18px;
    border-top: 1px solid var(--border-color);
}

.accordion-content p {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* System Requirements Table */
.reqs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11.5px;
    margin-top: 10px;
    border: 1px solid rgba(123, 44, 191, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.reqs-table td {
    padding: 9px 12px;
    border-bottom: 1px solid rgba(123, 44, 191, 0.05);
}

.reqs-table tr:last-child td {
    border-bottom: none;
}

.reqs-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    background-color: rgba(123, 44, 191, 0.01);
    width: 50%;
}

.reqs-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: #444;
}

/* How to Install Steps List */
.install-guide-list {
    list-style: none;
    margin-bottom: 25px;
}

.install-guide-list li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.install-guide-list li::before {
    content: "•";
    color: var(--brand-primary);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 4px;
    top: -2px;
}

.download-signup-box {
    margin-top: 20px;
}

.download-signup-box h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.download-signup-box .hindi-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.ordered-steps {
    list-style: none;
    margin-bottom: 15px;
}

.ordered-steps li {
    font-size: 11.5px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.ordered-steps li .step-number {
    position: absolute;
    left: 0;
    top: 0px;
    font-weight: 700;
    color: var(--brand-primary);
}

.bullet-steps {
    list-style: none;
    margin-bottom: 15px;
}

.bullet-steps li {
    font-size: 11.5px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.bullet-steps li::before {
    content: "•";
    color: var(--brand-primary);
    position: absolute;
    left: 4px;
    top: -1px;
    font-size: 13px;
}

/* Games Card Grid Switcher (Old Games / New Games Tab) */
.games-section {
    background-color: #f8fafc;
    border-radius: 24px;
    padding: 30px;
    margin-top: 10px;
    border: 1px solid #f1f5f9;
}

.tab-switcher-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-switcher {
    display: inline-flex;
    background-color: #f1f5f9;
    border-radius: 50px;
    padding: 4px;
    gap: 6px;
    border: 1px solid rgba(0,0,0,0.02);
}

.switch-btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.switch-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: fill 0.2s ease;
}

.switch-btn.active {
    background-color: #ffffff;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 4px 10px rgba(123, 44, 191, 0.06);
}

.switch-btn.active svg {
    fill: var(--brand-primary);
}

/* Table Header */
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 4px;
}

.table-header h2 {
    font-size: 16px;
    font-weight: 800;
    color: #1e1b4b;
}

.dropdown-select {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--brand-primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 8px rgba(123, 44, 191, 0.2);
    transition: all 0.2s ease;
}

.dropdown-select:hover {
    background-color: var(--brand-dark);
}

/* Games Row Card with Icon (Index & Download lists) */
.games-layout-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-card-row {
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 18px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
    animation: cardFadeIn 0.4s ease-out forwards;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.game-card-row:hover {
    transform: translateY(-2px);
    border-color: rgba(123, 44, 191, 0.12);
    box-shadow: 0 8px 24px rgba(123, 44, 191, 0.05);
}

.card-row-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.card-game-details {
    flex: 1;
    min-width: 0;
}

.card-game-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f8fafc;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.card-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-game-details h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 4px;
}

.card-game-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-rating {
    color: #6366f1;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-rating svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.meta-downloads {
    color: #22c55e;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-downloads svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.btn-row-download {
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    color: #ffffff;
    background: var(--brand-primary);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: capitalize;
}

.btn-row-download:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

/* Secondary Pages (Privacy, contact, etc.) CSS */
.page-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
    margin-top: 10px;
}

.page-card h1 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--brand-primary);
    border-bottom: 2px solid rgba(123, 44, 191, 0.08);
    padding-bottom: 10px;
}

.page-card h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 18px 0 8px 0;
    color: #111;
}

.page-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.page-card ul {
    margin-left: 18px;
    margin-bottom: 12px;
}

.page-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

/* Contact Us Form Styles */
.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(123, 44, 191, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--brand-primary);
}

.form-success {
    background-color: rgba(43, 179, 82, 0.06);
    border: 1px solid rgba(43, 179, 82, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 18px;
}

/* Responsive Grid overrides */
@media (max-width: 800px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--brand-primary);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        padding: 8px 0;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar nav.active {
        display: block;
        animation: slideDownMenu 0.25s ease-out forwards;
    }
    
    @keyframes slideDownMenu {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-weight: 600;
    }
    
    .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 12px 15px;
    }
    .index-hero-card {
        flex-direction: column-reverse;
        text-align: center;
    }
    .index-hero-info {
        padding-right: 0;
        margin-top: 20px;
    }
    .index-hero-info h1 {
        font-size: 28px;
    }
    .index-hero-info h1 .purple-title {
        font-size: 34px;
    }
    .index-hero-actions {
        justify-content: center;
    }
    .index-hero-stats {
        justify-content: center;
    }
    .index-hero-icon {
        width: 110px;
        height: 85px;
    }
    .hero-section {
        flex-direction: column-reverse;
        padding: 20px 0;
        text-align: center;
    }
    .hero-content {
        padding-right: 0;
        margin-top: 20px;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content h1 .brand-title {
        font-size: 38px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .hero-actions .btn-pill {
        width: 100%;
        justify-content: center;
    }
    .hero-media {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    .stats-bar-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        padding: 16px 12px;
    }
    .stat-item {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }
    .stat-item:last-child {
        grid-column: span 2;
        justify-content: center;
    }
    .game-card-row {
        padding: 12px;
        gap: 10px;
    }
    .card-row-left {
        gap: 10px;
    }
    .btn-row-download {
        padding: 8px 14px;
        font-size: 11px;
        flex-shrink: 0;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--brand-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 30px 0;
    margin-top: 60px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 25px 0;
}

/* Compliance Section */
.footer-compliance {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-item.age-limit .badge-icon {
    background-color: #ef4444;
    color: #ffffff;
    font-weight: 800;
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-item.responsible-gaming {
    color: #4ade80;
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.compliance-texts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.compliance-warning {
    line-height: 1.5;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0 !important;
}

.compliance-warning strong {
    color: #ffffff;
}

/* SEO Keywords */
.footer-seo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-seo h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.seo-tag-item {
    font-size: 11.5px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.seo-tag-item:hover {
    background-color: #ffffff;
    color: var(--brand-primary);
    border-color: #ffffff;
}

.seo-tag-item.hi-tag {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.seo-tag-item.hi-tag:hover {
    background-color: #ffffff;
    color: var(--brand-primary);
    border-color: #ffffff;
}

/* Bottom Copy & Social */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s ease;
    font-weight: 500;
}

.social-icon:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-icon.telegram:hover {
    color: #ffffff;
}

.social-icon.whatsapp:hover {
    color: #ffffff;
}

/* Responsive Footer overrides */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px 0;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .footer-compliance {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .compliance-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .compliance-warning {
        text-align: center;
    }
    .footer-seo {
        text-align: center;
    }
    .seo-tags {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

