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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: #f4f4f4;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 0;
}

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

.nav-menu a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-bg-image {
    width: 100%;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.3);
}

.lightning-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(255, 215, 0, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: lightning 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
    transform: rotate(45deg);
}

/* Animations */
@keyframes lightning {
    0% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.8); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

/* Overview Section */
.overview {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
}

.overview-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.overview-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.overview-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.overview-card:hover::before {
    left: 100%;
}

.overview-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.overview-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.overview-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.overview-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.overview-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.overview-link:hover::after {
    width: 100%;
}

.overview-link:hover {
    color: #ffed4e;
    transform: translateX(5px);
}

/* Card Images */
.card-image {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.overview-card:hover .card-img {
    transform: scale(1.05);
}

/* Additional Features */
.additional-features {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.additional-features h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.additional-features p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-showcase:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

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

.feature-showcase:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-content h3 {
    color: #ffd700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.showcase-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Memory Game Styles */
.memory-game-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    padding: 6rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.memory-game-section h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.memory-game-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.3rem;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
}

.game-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.game-button:active {
    transform: translateY(0);
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0.6rem;
    line-height: 1.1;
    min-height: 60px;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.game-card.flipped {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    transform: none;
}

.game-card.matched {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    border-color: #4CAF50;
    color: white;
    cursor: default;
}

.game-card.mismatch {
    background: linear-gradient(135deg, #f44336 0%, #ef5350 100%);
    border-color: #f44336;
    color: white;
}

.game-message {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-message p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1.1rem;
}

.game-message.success {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
}

.game-message.success p {
    color: #4CAF50;
    font-weight: 600;
}

/* Responsive Design for Game */
@media (max-width: 768px) {
    .game-board {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .game-card {
        font-size: 1rem;
        min-height: 70px;
        padding: 0.6rem;
    }
    
    .game-header {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .game-stats {
        justify-content: center;
    }
    
    .stat {
        padding: 0.6rem 1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .game-board {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .game-card {
        font-size: 0.8rem;
        min-height: 45px;
        padding: 0.4rem;
    }
    
    .game-stats {
        gap: 1rem;
    }
    
    .stat {
        padding: 0.5rem 0.8rem;
    }
}

/* Fullscreen mode */
.memory-game-section:fullscreen {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.memory-game-section:fullscreen h2 {
    display: none;
}

.memory-game-section:fullscreen p {
    display: none;
}

.memory-game-section:fullscreen .game-container {
    max-width: 90vw;
    max-height: 90vh;
    margin: 0;
    padding: 2rem;
}

.memory-game-section:fullscreen .game-board {
    max-width: 90vw;
    max-height: 70vh;
}

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

/* Fullscreen mobile styles */
@media (max-width: 768px) and (orientation: landscape) {
    .memory-game-section:fullscreen .game-board {
        grid-template-columns: repeat(6, 1fr);
        max-height: 80vh;
    }
    
    .memory-game-section:fullscreen .game-card {
        font-size: 0.9rem;
        min-height: 60px;
    }
}

/* Fallback for browsers that don't support :fullscreen */
.memory-game-section:-webkit-full-screen {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.memory-game-section:-webkit-full-screen h2 {
    display: none;
}

.memory-game-section:-webkit-full-screen p {
    display: none;
}

.memory-game-section:-webkit-full-screen .game-container {
    max-width: 90vw;
    max-height: 90vh;
    margin: 0;
    padding: 2rem;
}

.memory-game-section:-webkit-full-screen .game-board {
    max-width: 90vw;
    max-height: 70vh;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Game Description */
.game-description {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.description-text h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.description-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #f4f4f4;
}

.game-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.game-image:hover {
    transform: scale(1.05);
}

/* Gameplay Features */
.gameplay-features {
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Early Access */
.early-access {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
}

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

.access-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.access-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.bonus-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.bonus-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bonus-highlight span {
    font-weight: 600;
    color: #ffd700;
    font-size: 1.1rem;
}

.registration-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.registration-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #f4f4f4;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder {
    color: #999;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

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

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    color: #ffd700;
}

.community-links {
    text-align: center;
}

.community-links h3 {
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
    font-style: italic;
}

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

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

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

/* Page Hero Styles */
.page-hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero .hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.page-hero .hero-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Special styles for Erken Erişim and Özellikler pages */
.page-hero .hero-bg-image {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* Ensure top of image is not cut off */
.page-hero .hero-background {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.page-hero .hero-background img {
    width: 100%;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    object-position: center top;
}

/* Active Navigation */
.nav-menu a.active {
    color: #ffd700;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
}

/* Game Story Styles */
.game-story {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
}

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

.story-text h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.story-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.highlight-item h3 {
    color: #ffd700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.highlight-item p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

/* Game World Styles */
.game-world {
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    padding: 6rem 0;
}

.world-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.world-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.location-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.location-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.location-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Characters Styles */
.characters {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    padding: 6rem 0;
}

.characters-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.characters-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.character-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.character-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.character-image {
    height: 200px;
    overflow: hidden;
}

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

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

.character-info {
    padding: 1.5rem;
}

.character-info h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.character-title {
    color: #ccc;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.character-info p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Main Features Styles */
.main-features {
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    padding: 6rem 0;
}

.feature-card.large {
    padding: 3rem 2rem;
    text-align: center;
}

.feature-card.large .feature-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.feature-card.large h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card.large p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Combat System Styles */
.combat-system {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    padding: 6rem 0;
}

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

.combat-text h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.combat-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.combat-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.combat-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.combat-feature h3 {
    color: #ffd700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.combat-feature p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

/* Character Progression Styles */
.character-progression {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
}

.progression-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.progression-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.progression-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.progression-item:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.progression-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.progression-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.progression-item p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Multiplayer Styles */
.multiplayer {
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    padding: 6rem 0;
}

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

.multiplayer-text h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.multiplayer-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.multiplayer-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.multiplayer-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.multiplayer-feature h3 {
    color: #ffd700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.multiplayer-feature p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

/* Early Access Benefits Styles */
.early-access-benefits {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
}

.benefits-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.benefits-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Registration Section Styles */
.registration-section {
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    padding: 6rem 0;
}

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

.registration-text h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.registration-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.bonus-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
}

.bonus-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.bonus-text h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.bonus-text p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1rem;
}

.registration-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

/* Enhanced Form Styles */
.registration-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.registration-form h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.form-description {
    text-align: center;
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.registration-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #f4f4f4;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.registration-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #ffd700;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

.cta-button.secondary:hover {
    background: #ffd700;
    color: #000;
}

/* Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
}

.testimonials-section .section-header h2 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.testimonials-section .section-header p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
    position: relative;
}

.testimonial-quote p::before {
    content: '"';
    font-size: 3rem;
    color: #ffd700;
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

.author-info strong {
    display: block;
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #ccc;
    font-size: 0.9rem;
}

/* Community Platforms Styles */
.community-platforms {
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    padding: 6rem 0;
}

.platforms-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.platforms-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.platform-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.platform-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.platform-features li {
    padding: 0.3rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.platform-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.platform-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.platform-button.discord {
    background: linear-gradient(45deg, #7289da, #5865f2);
    color: white;
}

.platform-button.telegram {
    background: linear-gradient(45deg, #0088cc, #229ed9);
    color: white;
}

.platform-button.game {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
}

/* Events Section Styles */
.events-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    padding: 6rem 0;
}

.events-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.events-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
}

.event-info h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-info p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.event-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-status.upcoming {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.event-status.live {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Community Stats Styles */
.community-stats {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
}

.stats-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.stats-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1rem;
}

/* Game Screenshots Styles */
.game-screenshots {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    padding: 6rem 0;
}

.screenshots-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.screenshots-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.screenshot-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

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

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-info {
    padding: 1.5rem;
}

.screenshot-info h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.screenshot-info p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Image Gallery Styles */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

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

.gallery-image:hover {
    transform: scale(1.05);
}

/* Combat Screenshots Styles */
.combat-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.screenshot {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
}

/* Policy and Contact Pages */
.policy-section,
.contact-section {
    padding: 8rem 0 5rem;
    min-height: 100vh;
}

.policy-content,
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1,
.contact-content h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.last-updated,
.contact-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-text h2 {
    color: #ffd700;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.policy-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.policy-text ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.6;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-method h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: #e0e0e0;
    margin: 0;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #f4f4f4;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: #1a1a2e;
    color: #f4f4f4;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-section h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 3px solid #d4af37;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    padding: 1.5rem;
    display: none;
}

.cookie-consent.show {
    display: block;
    transform: translateY(0);
}

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

.cookie-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.cookie-text p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #d4af37;
}

.cookie-btn.decline:hover {
    background: #d4af37;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.cookie-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #f4d03f;
}

/* Cookie consent responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .hero-bg-image {
        object-position: center top;
        min-height: 100vh;
    }
    
    .page-hero {
        min-height: 100vh;
        padding: 2rem 1rem;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .page-hero .hero-bg-image {
        object-position: center top;
        min-height: 100vh;
    }
    
    .description-content,
    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content,
    .combat-content,
    .multiplayer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .characters-grid,
    .world-locations {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 1.5rem 1rem;
    }
    
    .hero-bg-image {
        object-position: center top;
        min-height: 100vh;
    }
    
    .page-hero {
        min-height: 100vh;
        padding: 1.5rem 1rem;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1rem;
    }
    
    .page-hero .hero-bg-image {
        object-position: center top;
        min-height: 100vh;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .testimonial-card,
    .registration-form {
        padding: 1.5rem;
    }
}
