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

:root {
    --primary-blue: #6366F1;
    --accent-orange: #F59E0B;
    --neutral-bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --footer-dark: #0F172A;
    --testimonial-bg: #F1F5F9;
    --green-accent: #10B981;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--neutral-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header / Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 3rem;
    text-decoration: none;
}

.logo-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 2.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-menu {
    list-style: none;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.nav-link.active {
    background-color: rgba(74, 144, 226, 0.1);
    color: var(--primary-blue);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-orange);
    border-radius: 0 4px 4px 0;
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: var(--card-bg);
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Main Content */
.main-content {
    margin-left: 240px;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    background: var(--primary-blue);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-accent {
    background: var(--accent-orange);
    color: white;
}

.btn-accent:hover {
    background: #E55A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
}

.btn-outline-accent:hover {
    background: var(--accent-orange);
    color: white;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 1.5rem;
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-icon.orange {
    background: var(--accent-orange);
    color: white;
}

.card-icon.blue {
    background: var(--primary-blue);
    color: white;
}

.card-icon.green {
    background: var(--green-accent);
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Game Cards */
.game-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.game-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    overflow: hidden;
    position: relative;
}

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

.game-content {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.game-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.view-all-btn {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--testimonial-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Update Cards */
.update-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.update-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.update-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: var(--neutral-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.reminder-box {
    background: var(--testimonial-bg);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 700px;
    margin: 2rem auto;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--footer-dark);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-left: 240px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsible Gaming Box */
.responsible-gaming-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.responsible-gaming-box .highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Legal Disclaimer Section */
.legal-disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.legal-disclaimer p {
    margin-bottom: 1rem;
}

.legal-disclaimer .highlight-link {
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: none;
}

.legal-disclaimer .highlight-link:hover {
    text-decoration: underline;
}

.footer-contact-info {
    margin-top: 1rem;
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.copyright-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-bottom .privacy-link {
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: none;
}

.copyright-bottom .privacy-link:hover {
    text-decoration: underline;
}

/* Page Content Styles */
.page-content {
    padding: 0;
    max-width: 100%;
    margin: 0;
    min-height: 60vh;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Games Page Header Banner */
.games-header {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.games-header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.games-header-icon svg {
    width: 48px;
    height: 48px;
    stroke: white;
}

.games-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.games-header-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.games-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.game-stat {
    text-align: center;
}

.game-stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.game-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Game Card Enhancements */
.game-card {
    position: relative;
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.game-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.game-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-stat-item svg {
    width: 18px;
    height: 18px;
}

/* Entertainment Naka Disclaimer */
.entertainment-disclaimer {
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    border-left: 4px solid var(--primary-blue);
}

.entertainment-disclaimer-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.entertainment-disclaimer-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.entertainment-disclaimer-text {
    color: var(--text-dark);
    line-height: 1.7;
}

/* About Page Header */
.about-header {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.about-header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-header-icon svg {
    width: 100px;
    height: 100px;
    fill: white;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-header-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Section Headers with Icons */
.section-header-with-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-header-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.section-header-icon svg {
    width: 24px;
    height: 24px;
}

.section-header-with-icon .section-title {
    margin: 0;
    text-align: left;
}

/* Bullet Lists */
.content-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.content-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

.content-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Contact Cards */
.contact-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-card-icon.orange {
    background: var(--accent-orange);
    color: white;
}

.contact-card-icon.blue {
    background: var(--primary-blue);
    color: white;
}

.contact-card-icon.green {
    background: var(--green-accent);
    color: white;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-card-info {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--neutral-bg);
    padding: 4rem 2rem;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.final-cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta-primary:hover {
    background: #E55A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

.btn-cta-secondary {
    background: white;
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--text-dark);
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Page Header */
.contact-header {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header-icon svg {
    width: 80px;
    height: 80px;
    stroke: white;
    fill: none;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-header-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.contact-header-note {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Service Feature Cards */
.service-feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-feature-icon.orange {
    background: var(--accent-orange);
    color: white;
}

.service-feature-icon.blue {
    background: var(--primary-blue);
    color: white;
}

.service-feature-icon.green {
    background: var(--green-accent);
    color: white;
}

.service-feature-icon svg {
    width: 32px;
    height: 32px;
}

/* Contact Details and Form Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-details-section,
.contact-form-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-header-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.section-header-small-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.section-header-small-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-item-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-intro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit-btn {
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #E55A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

.form-submit-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-header {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.legal-header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-header-icon svg {
    width: 80px;
    height: 80px;
    stroke: white;
    fill: none;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.legal-header-meta {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.legal-content-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section-item {
    margin-bottom: 3rem;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.legal-section-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.legal-section-icon svg {
    width: 24px;
    height: 24px;
}

.legal-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.legal-section-content {
    color: var(--text-dark);
    line-height: 1.8;
    margin-top: 1rem;
}

.legal-section-content p {
    margin-bottom: 1rem;
}

.legal-section-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.legal-section-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.legal-section-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.info-box {
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Cookie Settings */
.cookie-settings-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 3rem auto;
    max-width: 800px;
}

.cookie-settings-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cookie-settings-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cookie-preference {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-preference:last-child {
    border-bottom: none;
}

.cookie-preference-info {
    flex: 1;
}

.cookie-preference-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cookie-preference-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-toggle {
    width: 50px;
    height: 28px;
    background: #ccc;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.cookie-toggle.active {
    background: var(--primary-blue);
}

.cookie-toggle.disabled {
    background: #e0e0e0;
    cursor: not-allowed;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
    transform: translateX(22px);
}

.cookie-save-btn {
    display: block;
    margin: 2rem auto 0;
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-save-btn:hover {
    background: #E55A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .footer {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .games-header {
        padding: 3rem 1.5rem;
    }

    .games-header h1 {
        font-size: 2rem;
    }

    .games-header-subtitle {
        font-size: 1rem;
    }

    .games-stats {
        gap: 2rem;
    }

    .game-stats {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .logo-subtitle {
        font-size: 0.7rem;
        margin-left: 2.25rem;
    }
}
