/*
 * PROJECT: VertDeep
 * DOMAIN: vertdeep.com
 * GAME: Stick Jump Adventure
 * 
 * DESIGN:
 * - CSS: OOCSS Architecture
 * - Palette: Premium/Luxury (Dark Navy + Gold)
 * - Effect: Glassmorphism with Gold Accents
 * - Fonts: Playfair Display + Montserrat
 * - Buttons: Gradient with Gold Glow
 * 
 * Created: 2024
 */

/* ===========================
   1. CSS VARIABLES
   =========================== */
:root {
    --royal-navy: #1a1a2e;
    --deep-charcoal: #16213e;
    --luxury-gold: #d4af37;
    --champagne: #f7dc6f;
    --pearl-white: #f8f9fa;
    --silver-mist: #e9ecef;
    --obsidian: #0f0f1a;
    --midnight-blue: #2c3e50;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --header-height: 70px;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-glass: 0 8px 32px rgba(212, 175, 55, 0.1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-deep: 0 20px 40px rgba(26, 26, 46, 0.3);
}

/* ===========================
   2. RESET
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--pearl-white);
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--deep-charcoal) 50%, var(--obsidian) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ===========================
   3. TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--luxury-gold);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--silver-mist);
}

.gold-link {
    color: var(--luxury-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.gold-link:hover {
    color: var(--champagne);
}

/* ===========================
   4. LAYOUT
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    font-size: 2rem;
}

/* ===========================
   5. GLASS SURFACE / LUXURY CARD
   =========================== */
.glass-surface {
    background: rgba(248, 249, 250, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
}

.luxury-card {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(26, 26, 46, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.06), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===========================
   6. HEADER & NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    height: var(--header-height);
}

.header--scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--luxury-gold);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav-menu__link {
    color: var(--silver-mist);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu__link:hover {
    color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

/* ===========================
   7. MOBILE MENU (NAV TOGGLE)
   =========================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--luxury-gold);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        gap: var(--spacing-xs);
    }

    .nav-menu--active {
        display: flex;
    }

    .nav-menu__link {
        padding: var(--spacing-sm);
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }
}

/* ===========================
   8. HERO SECTION
   =========================== */
.hero {
    padding: var(--spacing-xxl) 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.game-showcase {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.game-showcase__icon {
    margin-bottom: var(--spacing-lg);
}

.game-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--luxury-gold);
    box-shadow: var(--shadow-glow);
    margin: 0 auto;
    object-fit: cover;
}

.hero__title {
    font-size: 3.2rem;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(45deg, var(--luxury-gold), var(--champagne));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-xl);
    color: var(--silver-mist);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero (internal pages) */
.page-hero {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

/* ===========================
   9. BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    line-height: 1.4;
}

.btn--primary {
    background: linear-gradient(45deg, var(--luxury-gold), var(--champagne));
    color: var(--royal-navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn--secondary {
    background: rgba(212, 175, 55, 0.1);
    color: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
}

.btn--secondary:hover {
    background: var(--luxury-gold);
    color: var(--royal-navy);
}

.btn--play {
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
    letter-spacing: 0.5px;
}

.btn--small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn--read {
    margin-top: var(--spacing-sm);
}

.btn--submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

/* ===========================
   10. FEATURES GRID (max 3)
   =========================== */
.features-section {
    padding: var(--spacing-xxl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-item {
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

/* ===========================
   11. FAQ ACCORDION
   =========================== */
.faq-section {
    padding: var(--spacing-xxl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    color: var(--luxury-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--luxury-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-lg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--spacing-lg) var(--spacing-md);
}

.faq-answer p {
    color: var(--silver-mist);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--luxury-gold);
    text-decoration: underline;
}

/* ===========================
   12. CTA SECTION
   =========================== */
.cta-section {
    padding: var(--spacing-xxl) 0;
}

.cta-block {
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.cta-block h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-block p {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
}

/* ===========================
   13. ARTICLES / BLOG CARDS
   =========================== */
.articles-preview {
    padding: var(--spacing-xxl) 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.blog-section {
    padding: var(--spacing-xxl) 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.article-card {
    position: relative;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-glow);
}

.article-card__content {
    position: relative;
    z-index: 2;
}

.article-card__title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.article-card__excerpt {
    color: var(--silver-mist);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.article-card__meta {
    font-size: 0.85rem;
    color: var(--silver-mist);
    opacity: 0.8;
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.category-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    color: var(--luxury-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

/* ===========================
   14. CONTENT GRID (About, How to Play)
   =========================== */
.content-section {
    padding: var(--spacing-xxl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.content-main .luxury-card {
    padding: var(--spacing-xl);
}

.content-main h2 {
    margin-top: 0;
}

.content-main h3 {
    margin-top: var(--spacing-lg);
}

.content-main ul,
.legal-content ul {
    list-style: disc;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.content-main ul li,
.legal-content ul li {
    color: var(--silver-mist);
    margin-bottom: var(--spacing-xs);
    line-height: 1.7;
}

.feature-list {
    list-style: none !important;
    margin-left: 0 !important;
}

.feature-list li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.sidebar-card {
    padding: var(--spacing-lg);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.sidebar-links {
    list-style: none !important;
    margin-left: 0 !important;
}

.sidebar-links li {
    padding: var(--spacing-xs) 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--silver-mist);
}

/* Guide Grid (How to Play) */
.guide-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.guide-grid .luxury-card {
    padding: var(--spacing-xl);
}

.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.controls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.control-item {
    padding: var(--spacing-md);
}

.control-item h4 {
    margin-bottom: var(--spacing-sm);
}

.control-item ul {
    list-style: none !important;
    margin-left: 0 !important;
}

.control-item ul li {
    padding: 0.3rem 0;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.tip-item {
    padding: var(--spacing-md);
    color: var(--silver-mist);
    line-height: 1.7;
}

.tip-item strong {
    color: var(--luxury-gold);
}

.ref-section {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.ref-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ref-section h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.ref-section ul {
    list-style: none !important;
    margin-left: 0 !important;
}

.ref-section ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

/* ===========================
   15. CONTACT SECTION
   =========================== */
.contact-section {
    padding: var(--spacing-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-xl);
}

.contact-form-wrapper .luxury-card {
    padding: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--luxury-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(248, 249, 250, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    color: var(--pearl-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder {
    color: rgba(233, 236, 239, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.form-input option {
    background: var(--royal-navy);
    color: var(--pearl-white);
}

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

.response-times {
    list-style: none !important;
    margin-left: 0 !important;
}

.response-times li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--silver-mist);
}

.response-times li:last-child {
    border-bottom: none;
}

.success-message {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    z-index: 2000;
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===========================
   16. LEGAL SECTIONS (Privacy, Terms)
   =========================== */
.legal-section {
    padding: var(--spacing-xxl) 0;
}

.legal-content {
    padding: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-content h2:first-of-type {
    margin-top: var(--spacing-lg);
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    margin-top: var(--spacing-md);
    font-size: 1.2rem;
}

.legal-content p {
    line-height: 1.8;
}

.legal-date {
    color: var(--luxury-gold);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

/* Team / Commitment section */
.team-section {
    padding: var(--spacing-xxl) 0;
}

/* Strategies section on how-to-play */
.strategies-section {
    padding: var(--spacing-xxl) 0;
}

.strategy-item {
    padding: var(--spacing-lg);
    text-align: left;
}

/* ===========================
   17. COOKIE CONSENT
   =========================== */
.cookie-consent {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    left: var(--spacing-lg);
    max-width: 500px;
    z-index: 9999;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: var(--shadow-deep);
    animation: slideUp 0.5s ease;
}

.cookie-consent__content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.cookie-consent__content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-consent__content a {
    color: var(--luxury-gold);
    text-decoration: underline;
}

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

/* ===========================
   18. FOOTER
   =========================== */
.footer {
    background: linear-gradient(145deg, var(--obsidian), var(--royal-navy));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.footer__title {
    color: var(--luxury-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer__subtitle {
    color: var(--luxury-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.footer__text {
    color: var(--silver-mist);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--spacing-xs);
}

.footer__link {
    color: var(--silver-mist);
    text-decoration: none;
    padding: var(--spacing-xs) 0;
    display: inline-block;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer__link:hover {
    color: var(--luxury-gold);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--silver-mist);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* ===========================
   19. RESPONSIVE
   =========================== */
@media (max-width: 992px) {
    .content-grid,
    .guide-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .controls-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .hero {
        min-height: 70vh;
        padding: var(--spacing-xl) 0;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .btn--play {
        font-size: 1.2rem;
        padding: 0.9rem 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .legal-content {
        padding: var(--spacing-md);
    }

    .luxury-card {
        padding: var(--spacing-md);
    }

    .cookie-consent {
        left: var(--spacing-sm);
        right: var(--spacing-sm);
        bottom: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.9rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .game-icon {
        width: 90px;
        height: 90px;
    }

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