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

html, body {
    height: 100%;
    width: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--treasure-dark);
}

html {
    scroll-behavior: smooth;
}

img, picture {
    max-width: 100%;
    display: block;
}

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

button, input, select, textarea {
    font: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --treasure-burgundy: #662222;
    --treasure-ruby: #842A3B;
    --treasure-rose: #A3485A;
    --treasure-gold: #F5DAA7;
    --treasure-dark: #1A0F0F;
    --treasure-light: #FFF8F0;
    --treasure-gray: #8B7355;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--treasure-dark), var(--treasure-burgundy));
    color: var(--treasure-light);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--treasure-gold);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--treasure-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.4rem;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    min-width: 190px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: inherit;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn:hover {
    transform: scale(0.96);
    letter-spacing: 0.04em;
}

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: scale(0.92);
    box-shadow: none;
}

.btn-large {
    padding: 1.3rem 2.7rem;
    font-size: 1.5rem;
    min-width: 220px;
}

.btn-primary {
    background: radial-gradient(circle at 0% 0%, var(--treasure-rose), transparent 60%),
    radial-gradient(circle at 100% 100%, var(--treasure-ruby), var(--treasure-burgundy));
    color: var(--treasure-light);
    box-shadow: 0 14px 30px rgba(102, 34, 34, 0.45);
}

.btn-primary:hover {
    box-shadow: 0 10px 24px rgba(102, 34, 34, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--treasure-burgundy);
    box-shadow: 0 0 0 1px rgba(102, 34, 34, 0.25);
    backdrop-filter: blur(14px);
}

.btn-secondary:hover {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
    box-shadow: 0 0 0 1px rgba(102, 34, 34, 0.4), 0 8px 20px rgba(102, 34, 34, 0.2);
}

.btn-accent {
    background: conic-gradient(from 130deg, var(--treasure-rose), var(--treasure-ruby), var(--treasure-burgundy), var(--treasure-rose));
    color: var(--treasure-light);
    box-shadow: 0 16px 36px rgba(163, 72, 90, 0.6);
}

.btn-accent:hover {
    box-shadow: 0 12px 28px rgba(163, 72, 90, 0.45);
}

.btn-icon {
    max-width: 25px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn:active .btn-icon {
    transform: translateX(2px) scale(0.95);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--treasure-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--treasure-ruby);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--treasure-burgundy);
}
.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(26, 15, 15, 0.98), rgba(102, 34, 34, 0.96)),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(245,218,167,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.age-gate-card {
    position: relative;
    max-width: 520px;
    width: 100%;
    background: linear-gradient(145deg, rgba(102, 34, 34, 0.85), rgba(132, 42, 59, 0.85));
    border-radius: 32px;
    padding: 48px 40px;
    border: 3px solid var(--treasure-gold);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(245, 218, 167, 0.2) inset,
    0 0 60px rgba(245, 218, 167, 0.15);
}

.age-gate-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--treasure-gold), var(--treasure-rose), var(--treasure-gold));
    border-radius: 34px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(8px);
}

.age-gate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 248, 240, 0.12);
    border: 1px solid rgba(245, 218, 167, 0.3);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--treasure-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.age-gate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--treasure-rose), var(--treasure-ruby));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--treasure-gold);
    box-shadow: 0 8px 24px rgba(163, 72, 90, 0.5);
}

.age-gate-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.age-gate-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--treasure-gold);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.age-gate-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.9);
    text-align: center;
    margin-bottom: 32px;
}

.age-gate-description strong {
    color: var(--treasure-gold);
    font-weight: 700;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-gate-btn {
    width: 100%;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.age-gate-btn-enter {
    background: linear-gradient(135deg, var(--treasure-rose), var(--treasure-ruby));
    color: var(--treasure-light);
    box-shadow: 0 12px 28px rgba(163, 72, 90, 0.5);
    border: 2px solid transparent;
}

.age-gate-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(163, 72, 90, 0.7);
}

.age-gate-btn-exit {
    background: transparent;
    color: rgba(255, 248, 240, 0.7);
    border: 2px solid rgba(245, 218, 167, 0.3);
}

.age-gate-btn-exit:hover {
    background: rgba(255, 248, 240, 0.08);
    color: var(--treasure-light);
    border-color: rgba(245, 218, 167, 0.5);
}

.age-gate-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 218, 167, 0.2);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 248, 240, 0.6);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .age-gate-card {
        padding: 36px 28px;
    }

    .age-gate-icon {
        width: 60px;
        height: 60px;
    }

    .age-gate-icon img {
        width: 30px;
        height: 30px;
    }

    .age-gate-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1100px;
}

.header-compass {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.95), rgba(255, 248, 240, 0.92));
    backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 16px 32px;
    border: 2px solid var(--treasure-gold);
    box-shadow: 0 12px 40px rgba(102, 34, 34, 0.3),
    0 0 0 1px rgba(245, 218, 167, 0.5) inset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-compass::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--treasure-gold), var(--treasure-rose), var(--treasure-gold));
    border-radius: 100px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-compass:hover::before {
    opacity: 0.15;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-logo-icon {
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, var(--treasure-gold), var(--treasure-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--treasure-gold);
    box-shadow: 0 4px 12px rgba(102, 34, 34, 0.3);
}

.header-logo-icon img {
    width: 64px;
    height: 64px;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--treasure-burgundy);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.header-logo-subtitle {
    font-size: 0.7rem;
    color: var(--treasure-ruby);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-grow: 1;
    justify-content: center;
}

.nav-marker {
    position: relative;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--treasure-dark);
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.nav-marker::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--treasure-burgundy);
    transition: width 0.3s ease;
}

.nav-marker:hover {
    color: var(--treasure-burgundy);
}

.nav-marker:hover::after {
    width: 80%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-cta-btn {
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--treasure-light);
    background: linear-gradient(135deg, var(--treasure-burgundy), var(--treasure-ruby));
    border: 2px solid var(--treasure-gold);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(102, 34, 34, 0.3);
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 34, 34, 0.5);
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--treasure-burgundy);
    border-radius: 50%;
    border: 2px solid var(--treasure-gold);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    background: var(--treasure-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.08);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(42deg) translateY(4px) translateX(4px);}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-4px) translateX(4px);;
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 600px) {
    .site-header {
        top: 12px;
        width: calc(100% - 24px);
    }

    .header-compass {
        padding: 12px 20px;
        gap: 16px;
    }

    .header-logo-icon {
        width: 38px;
        height: 38px;
    }

    .header-logo-icon img {
        width: 20px;
        height: 20px;
    }

    .header-logo-title {
        font-size: 0.95rem;
    }

    .header-logo-subtitle {
        font-size: 0.65rem;
    }

    .header-cta-btn {
        display: none;
    }
}
.hero-section {
    min-height: 80vh;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--treasure-dark) 0%, var(--treasure-burgundy) 100%);
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="parchment" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="%231A0F0F"/><path d="M0 50 Q 50 45, 100 50 T 200 50" stroke="%23F5DAA7" stroke-width="0.5" opacity="0.08" fill="none"/><path d="M0 100 Q 50 95, 100 100 T 200 100" stroke="%23F5DAA7" stroke-width="0.5" opacity="0.08" fill="none"/><path d="M0 150 Q 50 145, 100 150 T 200 150" stroke="%23F5DAA7" stroke-width="0.5" opacity="0.08" fill="none"/></pattern></defs><rect width="200" height="200" fill="url(%23parchment)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
}

.story-panel {
    flex: 0 0 42%;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 248, 240, 0.97), rgba(255, 248, 240, 0.94));
    border-radius: 32px;
    padding: 40px 36px;
    border: 3px solid var(--treasure-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(245, 218, 167, 0.4) inset;
}

.story-panel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--treasure-gold), var(--treasure-rose), var(--treasure-gold));
    border-radius: 34px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(12px);
}

.story-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--treasure-burgundy);
    line-height: 1.25;
    margin-bottom: 16px;
}

.story-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--treasure-ruby);
    line-height: 1.5;
    margin-bottom: 24px;
}

.story-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--treasure-gray);
    margin-bottom: 24px;
}

.story-cta {
    margin-bottom: 12px;
    text-align: center;
}

.story-disclaimer {
    font-size: 0.8rem;
    color: var(--treasure-gray);
    line-height: 1.5;
    font-style: italic;
}

.hero-illustration {
    flex: 1;
    position: relative;
    min-height: 500px;
    background: linear-gradient(145deg, rgba(102, 34, 34, 0.15), rgba(132, 42, 59, 0.1));
    border-radius: 32px;
    border: 3px solid var(--treasure-gold);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) inset,
    0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-illustration::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(245, 218, 167, 0.15), transparent 60%);
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.7;
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.floating-icon.star-1 {
    top: 10%;
    left: 8%;
    width: 48px;
    animation-delay: 0s;
}

.floating-icon.star-2 {
    top: 20%;
    right: 12%;
    width: 40px;
    animation-delay: 1.5s;
}

.floating-icon.star-3 {
    bottom: 15%;
    left: 15%;
    width: 36px;
    animation-delay: 3s;
}

.corner-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--treasure-rose), var(--treasure-ruby));
    border-radius: 50%;
    border: 3px solid var(--treasure-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--treasure-light);
    text-align: center;
    padding: 8px;
    line-height: 1.2;
}

.corner-badge.top-left {
    top: 20px;
    left: 20px;
}

.corner-badge.top-right {
    top: 20px;
    right: 20px;
}

.corner-badge.bottom-left {
    bottom: 20px;
    left: 20px;
}

.corner-badge.bottom-right {
    bottom: 20px;
    right: 20px;
}

@media (max-width: 1100px) {
    .hero-content {
        flex-direction: column;
        gap: 32px;
    }

    .story-panel {
        flex: none;
        width: 100%;
        max-width: 600px;
    }

    .hero-illustration {
        width: 100%;
        max-width: 600px;
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 110px 0 80px;
        min-height: auto;
    }

    .story-panel {
        padding: 32px 24px;
    }

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

    .story-description {
        font-size: 0.95rem;
    }

    .hero-illustration {
        min-height: 320px;
        padding: 24px;
    }

    .corner-badge {
        width: 48px;
        height: 48px;
        font-size: 0.6rem;
    }

    .floating-icon {
        display: none;
    }
}
.section-how-it-works {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--treasure-burgundy) 0%, var(--treasure-dark) 100%);
    overflow: hidden;
}

.section-how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(163, 72, 90, 0.15), transparent 60%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--treasure-gold);
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 248, 240, 0.8);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.adventure-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px 50px;
    background: url('../img/adventure-bg.webp') center/cover,
    linear-gradient(135deg, rgba(102, 34, 34, 0.9), rgba(26, 15, 15, 0.95));
    border-radius: 24px;
    border: 3px solid rgba(245, 218, 167, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) inset,
    0 0 40px rgba(245, 218, 167, 0.1) inset;
}

.adventure-timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(245, 218, 167, 0.08), transparent 60%);
    backdrop-filter: blur(3px) brightness(0.6);
    border-radius: 24px;
    pointer-events: none;
}

.timeline-markers {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.timeline-marker {
    text-align: center;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.timeline-marker:nth-child(1) { animation-delay: 0.2s; }
.timeline-marker:nth-child(2) { animation-delay: 0.4s; }
.timeline-marker:nth-child(3) { animation-delay: 0.6s; }
.timeline-marker:nth-child(4) { animation-delay: 0.8s; }

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

.marker-stone {
    position: relative;
    width: 140px;
    height: 160px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, rgba(102, 34, 34, 0.8), rgba(132, 42, 59, 0.6));
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    border: 3px solid var(--treasure-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.marker-stone:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(245, 218, 167, 0.4);
}

.marker-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--treasure-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.marker-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--treasure-rose), var(--treasure-ruby));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--treasure-gold);
}

.marker-icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.marker-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--treasure-gold);
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(245, 218, 167, 0.2);
}

@media (max-width: 900px) {
    .timeline-markers {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
}

@media (max-width: 600px) {
    .section-how-it-works {
        padding: 80px 0;
    }

    .adventure-timeline {
        padding: 40px 20px;
    }

    .timeline-markers {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .marker-stone {
        width: 120px;
        height: 140px;
    }
}

.section-cta-preview {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--treasure-dark) 0%, var(--treasure-burgundy) 100%);
    overflow: hidden;
}

.section-cta-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(163, 72, 90, 0.2), transparent 70%);
    pointer-events: none;
}

.preview-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.preview-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--treasure-gold);
    margin-bottom: 50px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.preview-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    border: 4px solid var(--treasure-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(245, 218, 167, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.preview-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(245, 218, 167, 0.5);
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.preview-container:hover .preview-image {
    filter: brightness(0.4);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: rgba(26, 15, 15, 0.3);
}

.preview-container:hover .preview-overlay {
    opacity: 1;
}

.preview-cta-btn {
    padding: 20px 50px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--treasure-rose), var(--treasure-ruby));
    color: var(--treasure-light);
    border: 3px solid var(--treasure-gold);
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 40px rgba(245, 218, 167, 0.6),
    0 12px 32px rgba(102, 34, 34, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.preview-container:hover .preview-cta-btn {
    transform: scale(1);
}

.preview-description {
    margin-top: 30px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .section-cta-preview {
        padding: 80px 0;
    }

    .preview-title {
        margin-bottom: 30px;
    }

    .preview-cta-btn {
        padding: 16px 36px;
        font-size: 1.2rem;
    }
}
.section-safety-compact {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--treasure-burgundy) 0%, var(--treasure-dark) 100%);
    overflow: hidden;
}

.section-safety-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 34, 34, 0.3), transparent 70%);
    pointer-events: none;
}

.safety-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.safety-header {
    text-align: center;
    margin-bottom: 40px;
}

.safety-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--treasure-gold);
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.safety-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 248, 240, 0.85);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.safety-card {
    position: relative;
    background: linear-gradient(135deg, rgba(102, 34, 34, 0.4), rgba(132, 42, 59, 0.3));
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.safety-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--treasure-gold), var(--treasure-rose));
    border-radius: 20px;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 218, 167, 0.3);
}

.safety-card:hover::before {
    opacity: 1;
}

.safety-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--treasure-rose), var(--treasure-ruby));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--treasure-gold);
    box-shadow: 0 4px 12px rgba(163, 72, 90, 0.4);
    transition: transform 0.3s ease;
}

.safety-card:hover .safety-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.safety-icon-wrapper img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.safety-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--treasure-gold);
    margin-bottom: 8px;
}

.safety-card-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 248, 240, 0.75);
    margin: 0;
}

.safety-footer {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(245, 218, 167, 0.2);
}

.safety-footer-text {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.7);
    font-style: italic;
}

@media (max-width: 600px) {
    .section-safety-compact {
        padding: 60px 0;
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .safety-card {
        padding: 24px 16px;
    }

    .safety-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .safety-icon-wrapper img {
        width: 24px;
        height: 24px;
    }

    .safety-card-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .safety-card-text {
        font-size: 0.75rem;
    }
}
.footer-scroll {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--treasure-dark) 0%, #0a0606 100%);
    overflow: hidden;
}

.footer-scroll::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(102, 34, 34, 0.2), transparent 70%);
    pointer-events: none;
}

.footer-ornament {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(245, 218, 167, 0.15), transparent 70%);
    border-radius: 50%;
    border: 3px solid rgba(245, 218, 167, 0.3);
    box-shadow: 0 0 40px rgba(245, 218, 167, 0.2) inset;
    z-index: 1;
}

.footer-ornament::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--treasure-gold);
    opacity: 0.4;
}

.footer-ornament-left {
    top: 40px;
    left: 40px;
}

.footer-ornament-right {
    top: 40px;
    right: 40px;
}

.footer-parchment {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px 40px;
    background: linear-gradient(135deg, rgba(102, 34, 34, 0.3), rgba(132, 42, 59, 0.2));
    border-radius: 32px;
    border: 3px solid var(--treasure-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(245, 218, 167, 0.15) inset;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.footer-parchment::before,
.footer-parchment::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--treasure-gold), var(--treasure-rose));
    border-radius: 50%;
    border: 4px solid var(--treasure-burgundy);
    box-shadow: 0 4px 20px rgba(245, 218, 167, 0.5);
    opacity: 0.9;
}

.footer-parchment::before {
    top: -40px;
    left: 80px;
}

.footer-parchment::after {
    top: -40px;
    right: 80px;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(245, 218, 167, 0.2);
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--treasure-gold);
    box-shadow: 0 4px 16px rgba(245, 218, 167, 0.3);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--treasure-gold);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 248, 240, 0.8);
    margin: 0;
    font-style: italic;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(102, 34, 34, 0.4);
    border-radius: 12px;
    border: 2px solid rgba(245, 218, 167, 0.3);
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(92%) sepia(8%) saturate(908%) hue-rotate(318deg) brightness(103%) contrast(95%);
}

.footer-contact a {
    color: var(--treasure-gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--treasure-light);
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--treasure-gold);
    margin-bottom: 20px;
}

.footer-title-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(92%) sepia(8%) saturate(908%) hue-rotate(318deg) brightness(103%) contrast(95%);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    position: relative;
    padding-left: 20px;
}

.footer-links li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--treasure-gold);
    opacity: 0.6;
}

.footer-links a {
    color: rgba(255, 248, 240, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--treasure-gold);
    padding-left: 5px;
}

.footer-disclaimer {
    padding: 40px 0;
    border-top: 2px solid rgba(245, 218, 167, 0.2);
    border-bottom: 2px solid rgba(245, 218, 167, 0.2);
    margin-bottom: 40px;
}

.disclaimer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--treasure-gold);
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.85);
    margin-bottom: 16px;
    text-align: left;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

.footer-company {
    padding: 40px 0;
    margin-bottom: 40px;
}

.company-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--treasure-gold);
    text-align: center;
    margin-bottom: 24px;
}

.company-details {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.company-label {
    font-weight: 600;
    color: var(--treasure-gold);
    min-width: 140px;
    font-size: 0.95rem;
}

.company-value {
    color: rgba(255, 248, 240, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.company-value a {
    color: var(--treasure-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-value a:hover {
    color: var(--treasure-light);
}

.footer-safety-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(163, 72, 90, 0.3), rgba(132, 42, 59, 0.2));
    border-radius: 20px;
    border: 2px solid var(--treasure-gold);
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.badge-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--treasure-rose), var(--treasure-ruby));
    border-radius: 50%;
    border: 3px solid var(--treasure-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(163, 72, 90, 0.5);
}

.badge-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--treasure-gold);
    margin: 0 0 8px;
}

.badge-link {
    color: rgba(255, 248, 240, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-link:hover {
    color: var(--treasure-gold);
    gap: 10px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid rgba(245, 218, 167, 0.2);
}

.copyright-seal {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--treasure-gold), var(--treasure-rose));
    border-radius: 50%;
    border: 3px solid var(--treasure-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 218, 167, 0.4);
}

.copyright-seal img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(42%) saturate(1840%) hue-rotate(330deg) brightness(90%) contrast(95%);
}

.copyright-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 248, 240, 0.7);
    margin: 0;
}

@media (max-width: 900px) {
    .footer-ornament {
        width: 80px;
        height: 80px;
    }

    .footer-ornament-left,
    .footer-ornament-right {
        top: 20px;
    }

    .footer-ornament-left {
        left: 20px;
    }

    .footer-ornament-right {
        right: 20px;
    }

    .footer-parchment {
        padding: 50px 30px 30px;
    }

    .footer-parchment::before,
    .footer-parchment::after {
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .footer-parchment::before {
        left: 50px;
    }

    .footer-parchment::after {
        right: 50px;
    }

    .footer-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .disclaimer-text p {
        font-size: 0.9rem;
    }

    .company-label {
        min-width: 120px;
        font-size: 0.9rem;
    }

    .company-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .footer-scroll {
        padding: 60px 0 0;
    }

    .footer-ornament {
        display: none;
    }

    .footer-parchment {
        padding: 40px 20px 24px;
        border-radius: 24px;
    }

    .footer-parchment::before,
    .footer-parchment::after {
        width: 50px;
        height: 50px;
        top: -25px;
    }

    .footer-parchment::before {
        left: 30px;
    }

    .footer-parchment::after {
        right: 30px;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-contact {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .footer-column-title {
        font-size: 1.1rem;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .disclaimer-title {
        font-size: 1.3rem;
    }

    .disclaimer-text p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .company-title {
        font-size: 1.2rem;
    }

    .company-row {
        flex-direction: column;
        gap: 6px;
    }

    .company-label {
        min-width: auto;
        font-size: 0.85rem;
    }

    .company-value {
        font-size: 0.85rem;
    }

    .footer-safety-badge {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .badge-icon {
        width: 60px;
        height: 60px;
    }

    .badge-icon img {
        width: 30px;
        height: 30px;
    }

    .badge-title {
        font-size: 1.1rem;
    }

    .badge-link {
        font-size: 0.9rem;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 12px;
    }

    .copyright-seal {
        width: 40px;
        height: 40px;
    }

    .copyright-seal img {
        width: 20px;
        height: 20px;
    }

    .copyright-text {
        font-size: 0.8rem;
    }
}

.section-game-symbols {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--treasure-burgundy) 0%, var(--treasure-burgundy) 100%);
    position: relative;
}

.section-game-symbols::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(163, 72, 90, 0.15), transparent 70%);
    pointer-events: none;
}

.symbols-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.symbols-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--treasure-gold);
    margin-bottom: 16px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.symbols-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 248, 240, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.symbol-card {
    background: linear-gradient(135deg, rgba(102, 34, 34, 0.3), rgba(132, 42, 59, 0.2));
    border-radius: 24px;
    border: 3px solid var(--treasure-gold);
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 218, 167, 0.1) inset;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.symbol-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(245, 218, 167, 0.2) inset;
    border-color: var(--treasure-light);
}

.symbol-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: radial-gradient(circle, var(--treasure-gold), var(--treasure-rose));
    border-radius: 50%;
    border: 4px solid var(--treasure-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 8px 32px rgba(245, 218, 167, 0.4);
    transition: all 0.3s ease;
}

.symbol-card:hover .symbol-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 40px rgba(245, 218, 167, 0.6);
}

.symbol-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--treasure-gold);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.symbol-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.85);
    margin: 0;
}

.symbols-disclaimer {
    text-align: center;
    padding: 30px;
    background: rgba(163, 72, 90, 0.3);
    border-radius: 20px;
    border: 2px solid var(--treasure-rose);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.symbols-disclaimer p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.9);
    margin: 0;
    font-weight: 600;
}

.footer-support {
    padding: 40px 0;
    border-top: 2px solid rgba(245, 218, 167, 0.2);
    margin-bottom: 40px;
}

.support-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--treasure-gold);
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.support-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.85);
    text-align: center;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.support-links-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(102, 34, 34, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(245, 218, 167, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.support-link:hover {
    transform: translateX(8px);
    border-color: var(--treasure-gold);
    box-shadow: 0 4px 16px rgba(245, 218, 167, 0.4);
}

.support-link-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-link-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 248, 240, 0.85);
}

.support-link:hover .support-link-text {
    color: var(--treasure-gold);
}

.support-note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 248, 240, 0.75);
    text-align: center;
    font-style: italic;
    margin: 0;
}

@media (max-width: 1000px) {
    .symbols-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .section-game-symbols {
        padding: 80px 0;
    }

    .symbols-header {
        margin-bottom: 50px;
    }

    .support-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .section-game-symbols {
        padding: 60px 0;
    }

    .symbols-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .symbol-card {
        padding: 30px 24px;
    }

    .symbol-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .symbol-name {
        font-size: 1.2rem;
    }

    .symbol-description {
        font-size: 0.9rem;
    }

    .symbols-disclaimer {
        padding: 24px 20px;
    }

    .symbols-disclaimer p {
        font-size: 0.9rem;
    }

    .support-title {
        font-size: 1.3rem;
    }

    .support-intro {
        font-size: 0.9rem;
    }

    .support-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .support-link {
        padding: 14px 16px;
    }

    .support-link-icon {
        font-size: 1.3rem;
    }

    .support-link-text {
        font-size: 0.9rem;
    }

    .support-note {
        font-size: 0.85rem;
    }
}

