/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Новая цветовая палитра */
    --marble-olympus: #F8F8F8;        /* Мраморный Олимп */
    --cold-white: #FFFFFF;             /* Холодный белый */
    --light-marble-gray: #E8E8E8;      /* Светлый мраморный серый */
    --matte-gold: #C9A961;             /* Матовый золотистый */
    --charcoal: #36454F;               /* Угольный */
    --sky-blue: #87CEEB;               /* Тон небесно-голубого */
    
    /* Применение цветов */
    --primary-color: var(--sky-blue);
    --secondary-color: var(--charcoal);
    --accent-color: var(--matte-gold);
    --text-dark: var(--charcoal);
    --text-light: #6B7A8A;
    --bg-light: var(--marble-olympus);
    --white: var(--cold-white);
    --shadow: 0 4px 6px rgba(54, 69, 79, 0.1);
    --shadow-lg: 0 10px 25px rgba(54, 69, 79, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cold-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--cold-white);
    border: 2px solid var(--matte-gold);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    flex: 1;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Header */
.header {
    background: var(--cold-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-marble-gray);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--matte-gold);
    transition: var(--transition);
}

.logo:hover {
    color: var(--charcoal);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sky-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--matte-gold);
}

.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: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    color: var(--cold-white);
    overflow: hidden;
    min-height: 600px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(54, 69, 79, 0.8) 0%, rgba(135, 206, 235, 0.6) 100%);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-image-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-right img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--matte-gold);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--charcoal) 100%);
    color: var(--cold-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Page Title Section */
.page-title-section {
    padding: 60px 0 40px;
    background: var(--marble-olympus);
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--charcoal);
}

/* Info Cards Section */
.info-cards-section {
    padding: 40px 0 60px;
    background: var(--marble-olympus);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--cold-white);
    border-radius: 10px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-marble-gray);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-blue);
}

.info-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: var(--light-marble-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.info-card:hover .info-card-image img {
    transform: scale(1.1);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    margin: -40px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 4px solid var(--cold-white);
    box-shadow: var(--shadow);
}

.info-card h3,
.info-card p {
    padding: 0 2rem;
}

.info-card p {
    padding-bottom: 2rem;
}

.zeus-icon-large {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.zeus-icon-large::after {
    content: 'Z';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cold-white);
    line-height: 1;
}

.olimpos-icon-large {
    background: linear-gradient(135deg, var(--charcoal), #2a3540);
    box-shadow: 0 0 20px rgba(54, 69, 79, 0.5);
}

.olimpos-icon-large::after {
    content: 'O';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--matte-gold);
    line-height: 1;
}

.mitoloji-icon-large {
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
    box-shadow: 0 0 20px rgba(147, 112, 219, 0.5);
}

.mitoloji-icon-large::after {
    content: 'M';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cold-white);
    line-height: 1;
}

.tanrilar-icon-large {
    background: linear-gradient(135deg, #1E90FF, #0066CC);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.tanrilar-icon-large::after {
    content: 'T';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cold-white);
    line-height: 1;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--matte-gold);
    color: var(--charcoal);
}

.btn-primary:hover {
    background: #B8964F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--cold-white);
}

.btn-secondary {
    background: transparent;
    color: var(--cold-white);
    border: 2px solid var(--cold-white);
}

.btn-secondary:hover {
    background: var(--cold-white);
    color: var(--charcoal);
}

.play-again-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Mini Game Section */
.mini-game-section {
    padding: 80px 0;
    background: var(--marble-olympus);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.game-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cold-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.door-container {
    margin-bottom: 2rem;
}

.door-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.door-frame {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a3540 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.door-panel {
    background: linear-gradient(135deg, #4a5568 0%, var(--charcoal) 100%);
    border-radius: 10px;
    padding: 30px;
    border: 3px solid var(--matte-gold);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.door-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    transition: left 0.5s ease;
}

.door-panel.opening::before {
    left: 100%;
}

.door-panel.shaking {
    animation: shake 0.5s;
}

.door-panel.fully-open {
    border-color: var(--sky-blue);
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.door-symbols-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    min-height: 150px;
}

.symbol-slot {
    flex: 1;
    min-height: 120px;
    border: 3px dashed var(--light-marble-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.symbol-slot.drag-over {
    border-color: var(--sky-blue);
    background: rgba(135, 206, 235, 0.2);
    transform: scale(1.05);
}

.symbol-slot.filled {
    border-style: solid;
    border-color: var(--matte-gold);
    background: rgba(201, 169, 97, 0.1);
}

.symbol-slot.correct {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
    animation: correctPulse 0.5s ease;
}

.symbol-slot.wrong {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.2);
    animation: shake 0.5s;
}

.symbol-slot .placed-symbol {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.game-controls {
    margin-bottom: 2rem;
}

.available-symbols {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.symbol-item {
    flex: 1;
    min-width: 120px;
    background: var(--marble-olympus);
    border: 2px solid var(--light-marble-gray);
    border-radius: 10px;
    padding: 15px;
    cursor: grab;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.symbol-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--sky-blue);
}

.symbol-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
    transform: rotate(5deg);
}

.symbol-item.selected {
    border-color: var(--sky-blue);
    background: rgba(135, 206, 235, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.5);
}

.symbol-slot.available {
    border-color: var(--sky-blue);
    background: rgba(135, 206, 235, 0.15);
    border-style: dashed;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.symbol-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cold-white);
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.zeus-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.zeus-icon::after {
    content: 'Z';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: var(--cold-white);
    line-height: 1;
}

.poseidon-icon {
    background: linear-gradient(135deg, #1E90FF, #0066CC);
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.5);
}

.poseidon-icon::after {
    content: 'P';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: var(--cold-white);
    line-height: 1;
}

.athena-icon {
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
    box-shadow: 0 0 15px rgba(147, 112, 219, 0.5);
}

.athena-icon::after {
    content: 'A';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: var(--cold-white);
    line-height: 1;
}

.symbol-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
}

.reset-btn {
    width: 100%;
    margin-top: 1rem;
}

.game-info {
    text-align: center;
}

#gameMessage {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    min-height: 30px;
    font-weight: 500;
}

.game-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: var(--light-marble-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sky-blue), var(--matte-gold));
    width: 0%;
    transition: width 0.5s ease;
}

@keyframes correctPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Article Sections */
.article-section {
    padding: 80px 0;
}

.article-section:nth-child(even) {
    background: var(--marble-olympus);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    text-align: center;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text p:last-child {
    margin-bottom: 0;
}

.article-with-image .article-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.article-image {
    position: sticky;
    top: 100px;
}

.article-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.article-image-center {
    text-align: center;
    margin-bottom: 2rem;
}

.article-image-center img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-height: 500px;
    object-fit: contain;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: var(--cold-white);
}

.content-image {
    margin-bottom: 2rem;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--marble-olympus);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background: var(--cold-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--matte-gold);
}

.philosophy-item h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    background: var(--marble-olympus);
}

.registration-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cold-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.registration-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.registration-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.registration-form {
    margin-top: 2rem;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: var(--cold-white);
}

.why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    background: var(--marble-olympus);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--sky-blue);
}

.why-item h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Info Blocks Section */
.info-blocks-section {
    padding: 80px 0;
    background: var(--cold-white);
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-block {
    background: var(--marble-olympus);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--matte-gold);
}

.info-block h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Explanation Section */
.explanation-section {
    padding: 80px 0;
    background: var(--marble-olympus);
}

.explanation-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.explanation-content p {
    margin-bottom: 1.5rem;
}

.explanation-content p:last-child {
    margin-bottom: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--cold-white);
}

.contact-info-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.contact-details {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: var(--marble-olympus);
    padding: 2rem;
    border-radius: 10px;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-policy {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-policy p {
    margin-bottom: 1.5rem;
}

.contact-policy p:last-child {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--marble-olympus);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--cold-white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--marble-olympus);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.contact-form {
    margin-top: 2rem;
}

/* Before Contact Section */
.before-contact-section {
    padding: 80px 0;
    background: var(--marble-olympus);
}

.before-contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.info-list {
    max-width: 900px;
    margin: 0 auto;
}

.info-list-item {
    background: var(--cold-white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--sky-blue);
}

.info-list-item:last-child {
    margin-bottom: 0;
}

.info-list-item h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-list-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Policy Section */
.policy-section {
    padding: 80px 0;
    background: var(--cold-white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--marble-olympus);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-content h1 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-marble-gray);
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--matte-gold);
}

.policy-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.policy-content a {
    color: var(--sky-blue);
    text-decoration: none;
    transition: var(--transition);
}

.policy-content a:hover {
    color: var(--charcoal);
    text-decoration: underline;
}

.policy-content strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* Thank You Section */
.thank-you-section {
    padding: 100px 0;
    background: var(--marble-olympus);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--cold-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.thank-you-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thank-you-text p {
    margin-bottom: 1.5rem;
}

.thank-you-text p:last-child {
    margin-bottom: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-marble-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--cold-white);
    color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--cold-white);
    padding: 50px 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cold-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr 0.9fr;
        gap: 2rem;
    }

    .hero-image-right img {
        max-height: 450px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--cold-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--light-marble-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image-right {
        order: -1;
    }

    .hero-image-right img {
        max-height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        padding: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .article-with-image .article-content {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .article-image {
        position: static;
        margin-bottom: 2rem;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .game-container {
        padding: 1.5rem;
    }

    .door-visual {
        min-height: 250px;
    }

    .door-frame {
        padding: 15px;
    }

    .door-panel {
        padding: 20px;
    }

    .door-symbols-container {
        flex-direction: column;
        gap: 10px;
        min-height: 200px;
    }

    .symbol-slot {
        min-height: 80px;
        width: 100%;
    }

    .available-symbols {
        flex-direction: column;
        gap: 10px;
    }

    .symbol-item {
        width: 100%;
        min-width: auto;
        padding: 12px;
    }

    .symbol-icon {
        width: 50px;
        height: 50px;
    }

    .symbol-name {
        font-size: 0.85rem;
    }

    .reset-btn,
    .play-again-btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }

    #gameMessage {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 60px 0;
    }

    .registration-wrapper,
    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .game-container {
        padding: 1rem;
    }

    .door-visual {
        min-height: 200px;
    }

    .door-panel {
        padding: 15px;
    }

    .symbol-slot {
        min-height: 70px;
    }

    .symbol-icon {
        width: 40px;
        height: 40px;
    }

    .symbol-icon::after {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

