/* Color System - Olimpos Theme */
:root {
    /* Background Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #1a1f3a;
    --bg-accent: #2d1b4e;
    --bg-sky: #1e3a5f;
    
    /* Accent Colors */
    --gold-primary: #ffd700;
    --gold-secondary: #ffed4e;
    --amber: #ffb347;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e8e8e8;
    --text-accent: #ffd700;
    
    /* Additional Colors */
    --purple: #8b4caf;
    --orange: #ff6b35;
    --silver: #c0c0c0;
    
    /* Effects */
    --glow-gold: rgba(255, 215, 0, 0.5);
    --glow-white: rgba(255, 255, 255, 0.3);
    --glow-purple: rgba(139, 76, 175, 0.4);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: -5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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);
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--gold-primary);
    border-left-color: var(--gold-primary);
    padding-left: 15px;
}

/* Stars Background */
.stars-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-accent) 100%);
    overflow: hidden;
}

.stars-background::before,
.stars-background::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        100px 200px white,
        300px 100px white,
        500px 300px white,
        700px 150px white,
        900px 250px white,
        1100px 80px white,
        200px 400px white,
        400px 500px white,
        600px 450px white,
        800px 550px white,
        1000px 480px white,
        120px 600px white,
        320px 700px white,
        520px 650px white,
        720px 750px white,
        920px 680px white;
    animation: twinkle 3s infinite;
}

.stars-background::after {
    animation-delay: 1.5s;
    box-shadow: 
        150px 250px white,
        350px 150px white,
        550px 350px white,
        750px 200px white,
        950px 300px white,
        150px 130px white,
        250px 450px white,
        450px 550px white,
        650px 500px white,
        850px 600px white,
        1050px 530px white,
        170px 650px white,
        370px 750px white,
        570px 700px white,
        770px 800px white,
        970px 730px white;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}



.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--amber), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-game-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-info-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.game-info-text strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.hero-bonus {
    margin-top: 2rem;
    text-align: left;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold-primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold-primary);
}

.bonus-icon {
    font-size: 1.5rem;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 600px;
    height: 700px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}


.zeus-symbol {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    opacity: 0.2;
}

.zeus-symbol::before {
    content: 'ZEUS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 20px var(--gold-primary));
    letter-spacing: 5px;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--amber));
    color: var(--bg-primary);
    border-color: var(--gold-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-glow {
    box-shadow: 0 0 20px var(--glow-gold);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--glow-gold); }
    50% { box-shadow: 0 0 40px var(--glow-gold), 0 0 60px var(--glow-gold); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 40px var(--glow-gold);
    background: rgba(255, 215, 0, 0.1);
}

.feature-icon {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Early Access Section */
.early-access-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
}

.early-access-header {
    text-align: center;
    margin-bottom: 3rem;
}

.early-access-header h1 {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.form-with-image-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.registration-form-image {
    flex-shrink: 0;
    width: 450px;
    height: 450px;
}

.registration-form-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.bonus-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-card {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 179, 71, 0.2));
    border: 3px solid var(--gold-primary);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 0 40px var(--glow-gold);
}

.bonus-icon-large {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
}

.bonus-card h2 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.bonus-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Forms */
.form-with-image-wrapper .registration-form-wrapper {
    flex: 1;
    max-width: none;
    margin: 0;
}

.registration-form-wrapper,
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.registration-form,
.contact-form {
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--glow-gold);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

/* Benefits Section */
.benefits-section {
    margin-top: 4rem;
    text-align: center;
}

.benefits-section h3 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px var(--glow-gold);
}

.benefit-icon {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.benefit-item h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h1 {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.about-main {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

.about-main-with-bg {
    position: relative;
    padding: 4rem;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.about-main-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/Olimpos\'un Hikayesi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    opacity: 0.3;
    z-index: 0;
}

.about-main-with-bg > * {
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--glow-gold);
}

.mission-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

.mission-section h2 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.mission-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px var(--glow-gold);
}

.info-icon {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.info-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}


.contact-map {
    margin-top: 4rem;
}

.contact-map h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Thank You Section */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    position: relative;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    padding: 3rem;
    background: rgba(26, 31, 58, 0.8);
    border: 3px solid var(--gold-primary);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px var(--glow-gold);
}

.thank-you-icon {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
    animation: pulse 2s infinite;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.bonus-info {
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 1.5rem;
}

.thank-you-content .btn {
    margin-top: 2rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--gold-primary);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-secondary);
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--gold-primary);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

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

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-bonus {
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .zeus-symbol {
        display: none;
    }
    
    /* Mobile Hero Background Image */
    .hero {
        background-image: url('../image/hero.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 14, 39, 0.65);
        z-index: 0;
    }
    
    .hero .container {
        position: relative;
        z-index: 1;
    }
    
    .stars-background {
        opacity: 0.3;
    }
    

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-with-image-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .registration-form-image {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .form-with-image-wrapper .registration-form-wrapper {
        max-width: 100%;
    }
    
    .early-access-header h1,
    .about-header h1,
    .contact-header h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--bg-primary);
}

.author-info h4 {
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-card {
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card-link:hover .article-card {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-img-first {
    object-position: center 30%;
}

.article-card-link:hover .article-img {
    transform: scale(1.1);
}

.article-placeholder {
    color: var(--gold-primary);
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.5;
}

.article-content {
    padding: 1.5rem;
}

.article-date {
    color: var(--gold-primary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.article-content h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.article-card-link:hover .article-link {
    padding-left: 5px;
}

/* Stats Table Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.stats-table,
.gods-table,
.pricing-table,
.working-hours-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 31, 58, 0.8);
}

.stats-table thead,
.gods-table thead,
.pricing-table thead,
.working-hours-table thead {
    background: rgba(255, 215, 0, 0.1);
}

.stats-table th,
.gods-table th,
.pricing-table th,
.working-hours-table th {
    padding: 1rem;
    text-align: left;
    color: var(--gold-primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.stats-table td,
.gods-table td,
.pricing-table td,
.working-hours-table td {
    padding: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.stats-table tbody tr:hover,
.gods-table tbody tr:hover,
.pricing-table tbody tr:hover,
.working-hours-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.stats-table tbody tr:last-child td,
.gods-table tbody tr:last-child td,
.pricing-table tbody tr:last-child td,
.working-hours-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Accordion */
.faq-section {
    margin-top: 4rem;
}

.faq-section h2,
.faq-section h3 {
    color: var(--gold-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.accordion-item {
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--gold-primary);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 215, 0, 0.05);
}

.accordion-header span:first-child {
    flex: 1;
    font-weight: 500;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    margin-top: 4rem;
}

.pricing-section h3 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Working Hours Section */
.working-hours-section {
    margin-top: 4rem;
}

.working-hours-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

/* Gods Table Section */
.gods-table-section {
    margin-top: 4rem;
}

.gods-table-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

/* Legal Documents Section */
.legal-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.legal-text {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 3rem;
    line-height: 1.8;
}

.article-main-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.legal-text h2 {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.legal-text h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-text ul {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-text ul li strong {
    color: var(--gold-primary);
}

.legal-text a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.legal-footer p {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin: 0;
}

/* Mini Game Section */
.mini-game-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.mini-game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/Olimpos Oyunu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    opacity: 0.3;
    z-index: 0;
}

.mini-game-section .container {
    position: relative;
    z-index: 1;
}

.game-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.8);
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.game-header {
    margin-bottom: 2rem;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    flex: 1;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: var(--gold-primary);
    font-size: 1.8rem;
    font-weight: bold;
}

.game-area {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

#game-canvas {
    width: 100%;
    height: 500px;
    display: none;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    z-index: 1;
}

#game-canvas.active {
    display: block;
}

.game-start-screen,
.game-end-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 39, 0.95);
    z-index: 20;
    padding: 2rem;
    text-align: center;
}

.game-start-screen h3,
.game-end-screen h3 {
    color: var(--gold-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.game-start-screen p,
.game-end-screen p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.final-score {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin: 1rem 0;
}

.final-score span {
    font-size: 2rem;
    font-weight: bold;
}

.bonus-info {
    color: var(--amber);
    font-weight: 500;
}

.game-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.final-level {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin: 0.5rem 0;
}

.final-level span {
    font-weight: bold;
}

@media (max-width: 768px) {
    .legal-text {
        padding: 2rem 1.5rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-text h2 {
        font-size: 1.3rem;
    }

    .game-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .game-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .game-area {
        min-height: 400px;
        max-height: 500px;
    }
    
    #game-canvas {
        max-height: 400px;
    }

    .game-start-screen,
    .game-end-screen {
        padding: 1.5rem;
        overflow-y: auto;
    }
    
    .game-start-screen h3,
    .game-end-screen h3 {
        font-size: 1.5rem;
    }
    
    .game-start-screen p,
    .game-end-screen p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .game-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .game-buttons .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-image {
        object-position: center 20%;
    }
    
    .feature-image-second {
        object-position: center 50%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .registration-form,
    .contact-form {
        padding: 1.5rem;
    }

    .table-wrapper {
        overflow-x: scroll;
    }

    .stats-table,
    .gods-table,
    .pricing-table,
    .working-hours-table {
        font-size: 0.9rem;
    }

    .stats-table th,
    .gods-table th,
    .pricing-table th,
    .working-hours-table th,
    .stats-table td,
    .gods-table td,
    .pricing-table td,
    .working-hours-table td {
        padding: 0.75rem 0.5rem;
    }
}

