@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    /* Primary Colors */
    --c-desert-midnight: #191611;
    --c-canyon-shadow: #2f241d;
    --c-weathered-earth: #46362c;
    --c-ancient-timber: #5a4434;

    /* Accent Colors */
    --c-treasure-gold: #d4af37;
    --c-burnished-brass: #b08968;
    --c-sunset-amber: #f59e0b;
    --c-copper-dust: #c77d36;
    --c-explorer-ivory: #f7f1e5;

    /* Text Colors */
    --c-text-primary: #faf7f2;
    --c-text-secondary: #d6c7b2;
    --c-text-muted: #a7927a;

    /* Gradients */
    --g-lost-gold: linear-gradient(135deg, #b08968, #d4af37, #f7d774);
    --g-canyon-sunset: linear-gradient(135deg, #5a4434, #b87333, #f59e0b);
    --g-frontier-night: linear-gradient(180deg, #191611, #2f241d, #46362c);
    
    /* Typography */
    --f-heading: 'Cinzel', serif;
    --f-body: 'Inter', sans-serif;
    --f-accent: 'Cormorant Garamond', serif;

    /* Spacing */
    --s-section: 6rem;
    --s-element: 2rem;
}

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

body {
    font-family: var(--f-body);
    background-color: var(--c-desert-midnight);
    color: var(--c-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(47, 36, 29, 0.4), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(90, 68, 52, 0.2), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

h1 { font-size: 4rem; text-transform: uppercase; }
h2 { font-size: 2.8rem; color: var(--c-treasure-gold); }
h3 { font-size: 1.8rem; }
p { margin-bottom: 1rem; color: var(--c-text-secondary); }

a {
    color: var(--c-treasure-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--c-sunset-amber); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--g-canyon-sunset);
    color: var(--c-desert-midnight);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Navigation */
header {
    background: rgba(25, 22, 17, 0.95);
    border-bottom: 1px solid var(--c-weathered-earth);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--f-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-explorer-ivory);
}
.brand-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--c-treasure-gold);
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: var(--c-text-secondary);
    font-family: var(--f-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.nav-links a:hover {
    color: var(--c-treasure-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--f-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.4s ease;
    text-align: center;
}
.btn-primary {
    background: var(--g-lost-gold);
    color: var(--c-desert-midnight);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(rgba(255,255,255,0.8), transparent, transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}
.btn-primary:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    color: var(--c-desert-midnight);
}
.btn-secondary {
    background: transparent;
    color: var(--c-treasure-gold);
    border: 1px solid var(--c-treasure-gold);
}
.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 8rem;
    background-image: linear-gradient(rgba(25, 22, 17, 0.7), rgba(47, 36, 29, 0.9)), url('images/photo-1469474968028-56623f02e42e.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 {
    background: var(--g-lost-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.3rem;
    color: var(--c-explorer-ivory);
    margin-bottom: 3rem;
    font-family: var(--f-accent);
    font-style: italic;
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.disclaimer-badge {
    display: inline-block;
    border: 1px solid var(--c-weathered-earth);
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(25, 22, 17, 0.6);
    backdrop-filter: blur(4px);
}
.disclaimer-badge span {
    color: var(--c-burnished-brass);
}

/* Featured Experience (Iframe Container) */
.featured-experience {
    padding: var(--s-section) 0;
    background: var(--g-frontier-night);
    position: relative;
}
.experience-header {
    text-align: center;
    margin-bottom: 3rem;
}
.game-frame-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px;
    background: var(--c-canyon-shadow);
    border: 2px solid var(--c-burnished-brass);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(0,0,0,0.5);
}
.game-frame-wrapper::before, .game-frame-wrapper::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--c-treasure-gold);
}
.game-frame-wrapper::before { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.game-frame-wrapper::after { bottom: -6px; right: -6px; border-left: none; border-top: none; }

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    overflow: hidden;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.experience-caption {
    text-align: center;
    margin-top: 1.5rem;
    font-family: var(--f-accent);
    color: var(--c-burnished-brass);
    font-size: 1.1rem;
    font-style: italic;
}

/* Sections General */
.section {
    padding: var(--s-section) 0;
    border-bottom: 1px solid var(--c-canyon-shadow);
}
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--c-burnished-brass); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem; }

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Explorer Cards */
.explorer-card {
    background: rgba(47, 36, 29, 0.6);
    border: 1px solid var(--c-ancient-timber);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}
.explorer-card::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px dashed rgba(176, 137, 104, 0.3);
    pointer-events: none;
}
.explorer-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-burnished-brass);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: rgba(47, 36, 29, 0.9);
}
.card-icon {
    font-size: 2.5rem;
    color: var(--c-treasure-gold);
    margin-bottom: 1.5rem;
}
.explorer-card h3 {
    color: var(--c-explorer-ivory);
    font-size: 1.4rem;
}

/* Two Column Text/Image */
.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.split-content.reverse {
    flex-direction: row-reverse;
}
.split-text { flex: 1; }
.split-image {
    flex: 1;
    position: relative;
}
.split-image img {
    width: 100%;
    height: auto;
    border: 1px solid var(--c-ancient-timber);
    filter: sepia(0.3) contrast(1.1);
}
.image-caption {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--c-desert-midnight);
    border: 1px solid var(--c-burnished-brass);
    padding: 0.5rem 1rem;
    font-family: var(--f-accent);
    color: var(--c-treasure-gold);
    font-style: italic;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--c-canyon-shadow);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: grayscale(0.4) sepia(0.2);
}
.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0) sepia(0);
}
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(25, 22, 17, 0.9));
    padding: 2rem 1rem 1rem;
    color: var(--c-explorer-ivory);
    font-family: var(--f-heading);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Statistics */
.stats-section {
    background: linear-gradient(rgba(25, 22, 17, 0.85), rgba(25, 22, 17, 0.85)), url('images/photo-1534447677768-be436bb09401.png') center/cover fixed;
}
.stat-box {
    text-align: center;
    padding: 2rem;
    border-left: 1px solid var(--c-weathered-earth);
}
.stat-box:first-child { border-left: none; }
.stat-number {
    font-family: var(--f-heading);
    font-size: 3.5rem;
    color: var(--c-treasure-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stat-label {
    color: var(--c-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* Clean Modern Footer Restyle */
.site-footer {
    background-color: #0F1726;
    border-top: 1px solid #D7B45A;
    font-family: 'Inter', sans-serif;
    padding: 4rem 0;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.site-footer .footer-column {
    border-right: 1px solid rgba(215, 180, 90, 0.25);
    padding-right: 2rem;
}

.site-footer .footer-column:last-child {
    border-right: none;
    padding-right: 0;
}

.site-footer .footer-heading {
    color: #D7B45A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.site-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-menu li {
    margin-bottom: 1rem;
}

.site-footer .footer-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.site-footer .footer-menu a:hover {
    color: #D7B45A;
    text-decoration: underline;
    text-decoration-color: #D7B45A;
    text-underline-offset: 4px;
}

.site-footer .footer-support-email {
    color: #D5DDF0;
    font-size: 0.95rem;
    margin: 0;
}

/* Animations */
@keyframes shimmer {
    0% { left: -100%; top: -100%; }
    100% { left: 200%; top: 200%; }
}

/* Responsive */
@media (max-width: 992px) {
    .split-content, .split-content.reverse { flex-direction: column; }
    .hero h1 { font-size: 3rem; }
    
    .site-footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .site-footer .footer-column {
        border-right: none;
        padding-right: 0;
    }
    .site-footer .footer-column:nth-child(odd) {
        border-right: 1px solid rgba(215, 180, 90, 0.25);
        padding-right: 2rem;
    }
}
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified for prompt */
    .hero { padding: 8rem 0 5rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .stat-box { border-left: none; border-bottom: 1px solid var(--c-weathered-earth); }
    .stat-box:last-child { border-bottom: none; }
    
    .site-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .site-footer .footer-column:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }
    .site-footer .footer-column:not(:last-child) {
        border-bottom: 1px solid rgba(215, 180, 90, 0.25);
        padding-bottom: 2.5rem;
    }
}

/* Legal Pages Specific */
.legal-content {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--c-treasure-gold);
    text-align: center;
}
.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--c-explorer-ivory);
}
.legal-content p, .legal-content li {
    margin-bottom: 1rem;
    color: var(--c-text-secondary);
}
.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Contact Form Styles */
.contact-layout {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.contact-form-container {
    width: 100%;
    max-width: 600px;
    background: rgba(47, 36, 29, 0.6);
    padding: 2rem;
    border: 1px solid var(--c-ancient-timber);
    border-radius: 4px;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--c-explorer-ivory);
    font-family: var(--f-heading);
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(25, 22, 17, 0.8);
    border: 1px solid var(--c-weathered-earth);
    color: var(--c-text-primary);
    font-family: var(--f-body);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-treasure-gold);
}
.contact-form .btn {
    width: 100%;
}