/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Yeni Renk Paleti - Sıcak Kum, Terracotta, Gökyüzü Mavisi */
    --sand-warm: #E8D5B7;
    --sand-medium: #D4C4A8;
    --sand-dark: #C9B99B;
    --terracotta-light: #C97D60;
    --terracotta: #B8654A;
    --terracotta-dark: #A0522D;
    --sky-blue-light: #87CEEB;
    --sky-blue: #6BB6FF;
    --sky-blue-dark: #4A90E2;
    
    /* Renk Kullanımları */
    --primary-color: var(--terracotta);
    --secondary-color: var(--terracotta-dark);
    --accent-color: var(--sky-blue);
    --bg-gradient-start: var(--sky-blue-light);
    --bg-gradient-mid: var(--sand-warm);
    --bg-gradient-end: var(--terracotta-light);
    
    --dark-bg: #2C2416;
    --light-bg: #F5F1E8;
    --text-dark: #3D3526;
    --text-light: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    backdrop-filter: blur(10px);
    border: 2px solid var(--terracotta);
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.cookie-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: var(--text-light);
}

.btn-cookie.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 101, 74, 0.4);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn-cookie.reject:hover {
    background: var(--terracotta);
    color: var(--text-light);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.95) 0%, rgba(168, 82, 45, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(232, 213, 183, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--sand-warm);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s;
}

.logo a:hover {
    color: var(--sky-blue-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--sand-warm);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sky-blue-light), var(--sand-warm));
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sky-blue-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--sand-warm), var(--sky-blue-light));
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 500px;
    background: linear-gradient(135deg, 
        rgba(135, 206, 235, 0.9) 0%, 
        rgba(232, 213, 183, 0.85) 40%,
        rgba(201, 125, 96, 0.9) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
    padding: 2rem 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, 
        rgba(135, 206, 235, 0.4) 0%, 
        transparent 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(135, 206, 235, 0.3) 0%, 
        rgba(232, 213, 183, 0.2) 50%,
        rgba(201, 125, 96, 0.4) 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.btn-register {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.btn-register:active {
    transform: translateY(-1px);
}

/* Fade-in Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, 
        rgba(135, 206, 235, 0.9) 0%, 
        rgba(232, 213, 183, 0.8) 50%,
        rgba(201, 125, 96, 0.9) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(184, 101, 74, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 101, 74, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 101, 74, 0.4);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

/* Mini Game Section */
.mini-game-section {
    background: var(--card-bg);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.mini-game-section h2 {
    text-align: center;
    color: var(--terracotta-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#gameCanvas {
    border: 3px solid var(--terracotta);
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sky-blue-light), var(--sand-warm));
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    touch-action: none;
}

.game-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--terracotta-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.timer {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--terracotta-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.timer span {
    display: inline-block;
    min-width: 2rem;
    text-align: center;
}

.game-instructions {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    padding: 0.5rem;
}

/* Анимация для таймера когда осталось мало времени */
.timer.warning {
    animation: pulse 0.5s ease-in-out infinite;
    border-color: #ff4444 !important;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2), rgba(255, 140, 0, 0.2)) !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Journey Sections */
.journey-section {
    padding: 4rem 0;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.journey-content.reverse {
    direction: rtl;
}

.journey-content.reverse > * {
    direction: ltr;
}

.journey-text h2 {
    color: var(--terracotta-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.journey-text p {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.journey-image {
    text-align: center;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--sand-warm), var(--terracotta-light));
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-image.dark {
    background: linear-gradient(135deg, var(--dark-bg), var(--terracotta-dark));
    color: var(--text-light);
}

.placeholder-image p {
    color: var(--text-dark);
    font-weight: 500;
}

.placeholder-image.dark p {
    color: var(--text-light);
}

/* Accordion */
.accordion-section {
    background: var(--card-bg);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.accordion-section h2 {
    text-align: center;
    color: var(--terracotta-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 2px solid var(--sand-medium);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--sand-warm), var(--terracotta-light));
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--terracotta-light), var(--terracotta));
    color: var(--text-light);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem;
}

.accordion-content p {
    line-height: 1.8;
    color: var(--text-dark);
}

/* Early Access Section */
.early-access-section {
    background: var(--card-bg);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.early-access-section h2 {
    color: var(--terracotta-dark);
    margin-bottom: 1rem;
}

.early-access-section p {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.early-access-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.early-access-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--sand-medium);
    border-radius: 8px;
    font-size: 1rem;
}

.early-access-form input:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 101, 74, 0.2);
}

/* Content Sections */
.content-section {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    color: var(--terracotta-dark);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column-text h2,
.column-text h3 {
    color: var(--terracotta-dark);
    margin-bottom: 1rem;
}

.column-image {
    text-align: center;
}

/* Lists */
.temple-list,
.symbolism-list {
    list-style: none;
    padding-left: 0;
}

.temple-list li,
.symbolism-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(232, 213, 183, 0.3), rgba(255, 255, 255, 0.5));
    border-left: 4px solid var(--terracotta);
    border-radius: 5px;
}

.gods-relation,
.society-reflection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.relation-item,
.reflection-item {
    background: linear-gradient(135deg, rgba(232, 213, 183, 0.3), rgba(255, 255, 255, 0.5));
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--sky-blue);
}

.relation-item h3,
.reflection-item h3 {
    color: var(--terracotta-dark);
    margin-bottom: 0.5rem;
}

.name-variation {
    background: linear-gradient(135deg, rgba(232, 213, 183, 0.2), rgba(255, 255, 255, 0.4));
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--terracotta);
}

.name-variation h3 {
    color: var(--terracotta-dark);
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-section {
    padding: 2rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-placeholder {
    min-height: 250px;
    padding: 2rem;
}

.gallery-caption {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--terracotta-dark);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 80vh;
    overflow: auto;
}

.lightbox-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, var(--sand-warm), var(--terracotta-light));
}

.lightbox-caption {
    color: var(--text-light);
    padding: 1rem;
    font-size: 1.2rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.lightbox-close {
    top: 20px;
    right: 40px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--sky-blue-light);
}

/* Contact Section */
.contact-section {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.contact-info h2,
.contact-form h2 {
    color: var(--terracotta-dark);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(232, 213, 183, 0.2), rgba(255, 255, 255, 0.5));
    border-radius: 10px;
    border-left: 4px solid var(--terracotta);
}

.contact-item strong {
    display: block;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--terracotta-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--sand-medium);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 101, 74, 0.2);
    background: rgba(255, 255, 255, 1);
}

.map-section {
    margin-top: 3rem;
}

.map-section h2 {
    color: var(--terracotta-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--sand-warm), var(--terracotta-light));
    padding: 4rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.map-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Thank You Section */
.thank-you-section {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-content {
    background: var(--card-bg);
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.thank-you-content h1 {
    color: var(--terracotta-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        rgba(44, 36, 22, 0.95) 0%, 
        rgba(168, 82, 45, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: var(--sand-warm);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 2px solid rgba(232, 213, 183, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--sky-blue-light), 
        var(--sand-warm), 
        var(--sky-blue-light), 
        transparent);
}

.footer p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-link {
    background: transparent;
    border: 2px solid var(--sand-warm);
    color: var(--sand-warm);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-link:hover {
    background: var(--sand-warm);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--terracotta);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--terracotta-dark);
}

.modal-content h2 {
    color: var(--terracotta-dark);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.modal-body {
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--terracotta);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, 
            rgba(44, 36, 22, 0.98) 0%, 
            rgba(168, 82, 45, 0.98) 100%);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid rgba(232, 213, 183, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(232, 213, 183, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: linear-gradient(90deg, var(--sky-blue-light), var(--sand-warm));
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: linear-gradient(90deg, var(--sky-blue-light), var(--sand-warm));
    }

    .hero {
        min-height: auto;
        padding: 1rem 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .hero-image {
        order: 1;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-content p[style*="color: #FFD700"] {
        font-size: 1.1rem !important;
        margin-top: 1rem !important;
    }

    .btn-register {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .two-column,
    .journey-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .journey-content.reverse {
        direction: ltr;
    }

    .two-column.reverse {
        direction: ltr;
    }

    .game-container {
        position: relative;
        padding: 10px;
    }
    
    .game-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
            rgba(255, 215, 0, 0.3), 
            rgba(255, 140, 0, 0.3), 
            rgba(184, 101, 74, 0.3), 
            rgba(135, 206, 235, 0.3));
        border-radius: 20px;
        z-index: 0;
        filter: blur(12px);
        animation: pulse-glow 3s ease-in-out infinite;
    }
    
    @keyframes pulse-glow {
        0%, 100% {
            opacity: 0.5;
            transform: scale(1);
        }
        50% {
            opacity: 0.8;
            transform: scale(1.02);
        }
    }
    
    #gameCanvas {
        width: 100%;
        max-width: 95vw;
        height: auto;
        min-height: 600px;
        border: 5px solid var(--terracotta);
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 
                    0 0 40px rgba(255, 215, 0, 0.4),
                    0 0 60px rgba(184, 101, 74, 0.3),
                    inset 0 0 40px rgba(255, 215, 0, 0.2);
        background: linear-gradient(135deg, 
            var(--sky-blue-light) 0%, 
            var(--sand-warm) 50%, 
            var(--terracotta-light) 100%);
        position: relative;
        z-index: 1;
    }

    .game-info {
        gap: 1.2rem;
    }

    .score {
        font-size: 1.4rem;
        padding: 0.6rem 1.8rem;
    }

    .timer {
        font-size: 1.4rem;
        padding: 0.6rem 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .btn-primary:active,
    .btn-secondary:active {
        transform: translateY(0);
    }

    .early-access-form {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gods-relation,
    .society-reflection {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .page-hero {
        padding: 2rem 0;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .content-section,
    .accordion-section,
    .mini-game-section {
        padding: 2rem 1.5rem;
    }

    .game-container {
        position: relative;
        padding: 15px;
    }
    
    .game-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
            rgba(255, 215, 0, 0.4), 
            rgba(255, 140, 0, 0.4), 
            rgba(184, 101, 74, 0.4), 
            rgba(135, 206, 235, 0.4),
            rgba(255, 215, 0, 0.4));
        border-radius: 25px;
        z-index: 0;
        filter: blur(15px);
        animation: pulse-glow-mobile 3s ease-in-out infinite;
    }
    
    @keyframes pulse-glow-mobile {
        0%, 100% {
            opacity: 0.6;
            transform: scale(1);
        }
        50% {
            opacity: 0.9;
            transform: scale(1.02);
        }
    }
    
    #gameCanvas {
        max-width: 98vw;
        min-height: 650px;
        border: 6px solid var(--terracotta);
        border-radius: 18px;
        box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), 
                    0 0 50px rgba(255, 215, 0, 0.5),
                    0 0 80px rgba(184, 101, 74, 0.4),
                    inset 0 0 50px rgba(255, 215, 0, 0.25),
                    inset 0 0 100px rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, 
            var(--sky-blue-light) 0%, 
            var(--sand-warm) 30%, 
            var(--terracotta-light) 70%, 
            var(--sky-blue-light) 100%);
        position: relative;
        z-index: 1;
        filter: brightness(1.05) contrast(1.1);
    }

    .mini-game-section {
        padding: 2.5rem 1rem;
        margin: 2rem auto;
    }

    .game-container {
        gap: 1.8rem;
    }

    .game-info {
        gap: 1.5rem;
        width: 100%;
        max-width: 95vw;
    }

    .score {
        font-size: 1.6rem;
        padding: 0.8rem 2rem;
        width: 100%;
        text-align: center;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
        border: 3px solid rgba(255, 215, 0, 0.5);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    .timer {
        font-size: 1.6rem;
        padding: 0.8rem 2rem;
        width: 100%;
        text-align: center;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 140, 0, 0.25));
        border: 3px solid rgba(255, 215, 0, 0.6);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        border-radius: 35px;
        font-weight: 600;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
        border: none;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--terracotta-dark), var(--terracotta));
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    }

    .btn-secondary {
        background: linear-gradient(135deg, #6c757d, #5a6268);
        border: none;
    }

    .btn-secondary:hover {
        background: linear-gradient(135deg, #5a6268, #6c757d);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    }

    .game-info p {
        font-size: 0.85rem;
        text-align: center;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        margin-top: 0.5rem;
    }

    .mini-game-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

