/* SummitDriftMount - Modern Mountain Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4fc3f7;
    --secondary-color: #29b6f6;
    --accent-color: #81d4fa;
    --success-color: #00d084;
    --warning-color: #ff6b35;
    --error-color: #f44336;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --text-primary: #e0e6ed;
    --text-secondary: #b0bec5;
    --text-muted: #78909c;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(79, 195, 247, 0.2);
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a4b6b 100%);
    --gradient-accent: linear-gradient(45deg, #4fc3f7, #29b6f6, #81d4fa);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(79, 195, 247, 0.2);
    border-color: rgba(79, 195, 247, 0.3);
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--accent-color);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    transition: var(--transition);
}

.logo-link:hover .logo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--shadow-color));
}

.logo-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 0 30px var(--shadow-color);
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo-link:hover .logo-text {
    filter: brightness(1.2);
}

.navigation {
    position: relative;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Mobile Navigation */
.navigation.mobile-open ul {
    position: fixed;
    top: 80px;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
    max-width: calc(100vw - 2rem);
    margin: 0 auto;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navigation a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background: rgba(79, 195, 247, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.1);
}

.navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(41, 182, 246, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.navigation a:hover::before {
    opacity: 1;
}

.navigation a:hover::after {
    width: 80%;
}

.navigation a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.2);
    border-color: rgba(79, 195, 247, 0.3);
}

.navigation a.active {
    color: var(--accent-color);
    background: rgba(79, 195, 247, 0.1);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.15);
}

.navigation a.active::after {
    width: 80%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mountain-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    clip-path: polygon(0% 100%, 20% 60%, 40% 80%, 60% 40%, 80% 70%, 100% 50%, 100% 100%);
}

.floating-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: float 20s infinite linear;
}

.cloud-1 {
    width: 80px;
    height: 30px;
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.cloud-2 {
    width: 120px;
    height: 40px;
    top: 30%;
    left: -150px;
    animation-delay: -7s;
}

.cloud-3 {
    width: 100px;
    height: 35px;
    top: 15%;
    left: -120px;
    animation-delay: -14s;
}

@keyframes float {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 clamp(1rem, 4vw, 3rem);
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--shadow-color);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    animation: glow 2s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.btn-icon {
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    color: white;
    margin: 0 auto 1.5rem auto;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

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

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

/* Game Preview Section */
.game-preview {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.game-visual {
    position: relative;
}

.game-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
}

.game-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-frame:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.play-icon {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

.game-details {
    padding: 2rem 0;
}

.game-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.game-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.game-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
    color: white;
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* Simple Disclaimer Component - Eclipse Game Social Style */
.simple-disclaimer {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(79, 195, 247, 0.05) 100%);
    border-top: 1px solid var(--border-color);
}

.disclaimer-box {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.disclaimer-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #fbbf24;
    border-radius: 50%;
    color: white;
}

.disclaimer-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.disclaimer-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-icon.entertainment {
    background: #fbbf24;
    color: white;
}

.item-icon.no-value {
    background: #10b981;
    color: white;
}

.item-icon.age {
    background: #3b82f6;
    color: white;
}

.item-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.item-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.responsible-gaming {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.responsible-gaming p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.responsible-gaming strong {
    color: var(--accent-color);
}

/* Game Rules Section */
.game-rules-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(79, 195, 247, 0.05) 100%);
    border-top: 1px solid var(--border-color);
}

.rules-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.rules-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
}

.rules-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.rules-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.rule-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
    border-color: var(--accent-color);
}

.rule-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.game-features {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.game-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: var(--accent-color);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
}


/* Mobile Responsive for Game Rules */
@media (max-width: 768px) {
    .game-rules-section {
        padding: 2rem 0;
    }
    
    .rules-header h2 {
        font-size: 2rem;
    }
    
    .rules-header p {
        font-size: 1rem;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rule-card {
        padding: 1.5rem;
    }
    
    .game-features {
        padding: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
}

/* Game Header */
.game-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.game-logo {
    flex-shrink: 0;
}

.game-logo-icon {
    width: 3rem;
    height: 3rem;
    transition: var(--transition);
}

.game-logo:hover .game-logo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--shadow-color));
}

.game-title-section {
    flex: 1;
}

.game-title-section h2 {
    margin-bottom: 0.5rem;
}

/* Game Container */
.game-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    background: #000;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: 4rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 80vh;
}

.legal-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(41, 182, 246, 0.1) 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.legal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.legal-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.last-updated {
    background: rgba(79, 195, 247, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info {
    background: rgba(79, 195, 247, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color);
    margin-top: 1rem;
}

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

/* New Footer Design */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-icon {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--shadow-color));
}

.footer-logo-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-text {
    filter: brightness(1.2);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}


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

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    gap: 2rem;
}

.footer-copyright p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.85rem;
    font-style: italic;
    text-align: right;
}

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

/* Banners */
.banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.cookie-banner {
    bottom: 0;
}

.age-banner {
    bottom: 100px;
}

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

.banner-content p {
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.banner-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.banner-btn-yes {
    background: var(--gradient-accent);
    color: white;
}

.banner-btn-no {
    background: #ff4444;
    color: white;
}

.banner-btn-no:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .banner {
        padding: 1rem;
        bottom: 0;
    }
    
    .age-banner {
        bottom: 0;
    }
    
    .cookie-banner {
        bottom: 240px; /* Age banner'ın üstünde olması için */
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .banner-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 0.75rem;
    }
    
    .cookie-banner {
        bottom: 260px; /* Daha fazla mesafe küçük ekranlarda */
    }
    
    .banner-content p {
        font-size: 0.85rem;
    }
    
    .banner-btn {
        padding: 0.875rem;
        font-size: 0.85rem;
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-primary);
}

.page-title {
    margin-bottom: 2rem;
}

.page-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Styles */
.updates-timeline {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

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

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px var(--shadow-color);
}

.marker-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
    border-color: var(--primary-color);
}

.update-header {
    margin-bottom: 1.5rem;
}

.update-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.update-version {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.update-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.update-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.update-features h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.feature-check {
    width: 1rem;
    height: 1rem;
    color: var(--success-color);
    flex-shrink: 0;
}

/* Roadmap Styles */
.roadmap-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

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

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

.roadmap-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.roadmap-item:hover::before {
    opacity: 0.05;
}

.roadmap-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.roadmap-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem auto;
}

.roadmap-icon svg {
    width: 2rem;
    height: 2rem;
}

.roadmap-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.roadmap-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.roadmap-status {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.mountain-illustration {
    width: 100%;
    height: 300px;
}

.mountain-illustration svg {
    width: 100%;
    height: 100%;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

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

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.value-card:hover::before {
    opacity: 0.05;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem auto;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
}

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

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


/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 2rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
}

.success-icon svg {
    width: 2rem;
    height: 2rem;
}

.form-success h3 {
    color: #4caf50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-illustration {
    width: 100%;
    height: 200px;
}

.contact-illustration svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .topbar {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navigation ul {
        display: none;
    }
    
    .navigation.mobile-open ul {
        display: flex !important;
    }
    
    .navigation a {
        padding: 1rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        margin: 0;
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .title-main {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.2;
    }
    
    .title-sub {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .game-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-stats {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Timeline Mobile */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    /* Mission Mobile */
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Values Mobile */
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    
    /* Roadmap Mobile */
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    /* Logo Mobile */
    .logo-text {
        font-size: 1.4rem;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    /* Game Header Mobile */
    .game-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .game-logo-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    /* Legal Pages Mobile */
    .legal-hero h1 {
        font-size: 2.2rem;
    }
    
    .legal-hero p {
        font-size: 1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-disclaimer p {
        text-align: center;
    }
    
    /* Contact Form Mobile */
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.3rem;
    }
    
    .contact-form {
        gap: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .contact-form .btn {
        align-self: stretch;
        width: 100%;
    }
    
    /* Simple Disclaimer Mobile */
    .disclaimer-box {
        padding: 1.5rem;
    }
    
    .disclaimer-title h2 {
        font-size: 1.3rem;
    }
    
    .title-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .disclaimer-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .item-icon {
        align-self: center;
        width: 2rem;
        height: 2rem;
    }
    
    .item-content h3 {
        font-size: 1rem;
    }
    
    .item-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .title-main {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.3;
        word-break: break-word;
    }
    
    .title-sub {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .navigation ul {
        gap: 0.5rem;
    }
    
    .navigation a {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        width: 2.2rem;
        height: 2.2rem;
    }
    
    .mobile-menu-toggle span {
        width: 16px;
    }
    
    .navigation.mobile-open ul {
        top: 70px;
        left: 0.5rem;
        right: 0.5rem;
        padding: 1rem;
        max-width: calc(100vw - 1rem);
    }
    
    .features,
    .game-preview,
    .stats {
        padding: 3rem 0;
    }
    
    .feature-card,
    .stat-item {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}