/*
 * PROJECT: Diana Stamp
 * DOMAIN: dianastamp.com
 * GAME: Temple of Athena
 * 
 * DESIGN:
 * - CSS: BEM Architecture
 * - Palette: Oceanic (Blue, Green, Gold, Sea Waves)
 * - Effect: Glassmorphism
 * - Fonts: Playfair Display + Source Sans 3
 * - Buttons: Gradient Ocean Style
 * 
 * Created: December 2024
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Oceanic Color Palette */
    --deep-ocean: #0a2463;
    --sea-blue: #1e88e5;
    --wave-teal: #26a69a;
    --coral-gold: #ffc107;
    --pearl-white: #f8fdff;
    --seaweed-green: #4caf50;
    --sunset-orange: #ff7043;
    --ocean-purple: #5e35b1;
    
    /* Glassmorphism Effects */
    --glass-bg: rgba(248, 253, 255, 0.1);
    --glass-border: rgba(248, 253, 255, 0.2);
    --glass-shadow: rgba(10, 36, 99, 0.1);
    --glass-bg-solid: rgba(248, 253, 255, 0.85);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Layout */
    --header-height: 70px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--deep-ocean);
    background: linear-gradient(135deg, var(--pearl-white) 0%, #e3f2fd 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg-solid);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: var(--header-height);
    transition: var(--transition-normal);
}

.header--scrolled {
    box-shadow: 0 4px 20px var(--glass-shadow);
}

.navbar {
    position: relative;
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-ocean);
    background: linear-gradient(45deg, var(--sea-blue), var(--wave-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.navbar__menu {
    display: flex;
    align-items: center;
}

.navbar__list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.navbar__link {
    font-weight: 500;
    color: var(--deep-ocean);
    transition: var(--transition-fast);
    position: relative;
    font-size: 1rem;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--sea-blue), var(--wave-teal));
    transition: var(--transition-fast);
}

.navbar__link:hover::after,
.navbar__link--active::after {
    width: 100%;
}

.navbar__link:hover,
.navbar__link--active {
    color: var(--sea-blue);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    gap: 5px;
    z-index: 1001;
}

.navbar__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--deep-ocean);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar__toggle--active .navbar__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle--active .navbar__toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar__toggle--active .navbar__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    gap: var(--space-xs);
}

.btn--primary {
    background: linear-gradient(135deg, var(--sea-blue), var(--wave-teal));
    color: white;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.6);
}

.btn--secondary {
    background: var(--glass-bg-solid);
    color: var(--deep-ocean);
    border: 2px solid var(--wave-teal);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: var(--wave-teal);
    color: white;
}

.btn--outline {
    background: transparent;
    color: var(--sea-blue);
    border: 2px solid var(--sea-blue);
}

.btn--outline:hover {
    background: var(--sea-blue);
    color: white;
}

.btn--small {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.9rem;
}

.btn--large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.2rem;
}

.btn--full {
    width: 100%;
}

.btn--read {
    margin-top: var(--space-sm);
    position: relative;
    z-index: 2;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-2xl);
    background: linear-gradient(135deg, var(--pearl-white) 0%, #e3f2fd 50%, #b3e5fc 100%);
    overflow: hidden;
    color: white;
}

.hero__ocean-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 Q300,120 600,60 T1200,60 L1200,0 L0,0 Z' fill='%2326a69a' fill-opacity='0.1'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 120px;
    background-position: bottom;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

.hero__content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--deep-ocean);
    margin-bottom: var(--space-md);
    background: linear-gradient(45deg, var(--deep-ocean), var(--sea-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--deep-ocean);
    margin-bottom: var(--space-xl);
    opacity: 0.8;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__game-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__game-image {
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(10, 36, 99, 0.2);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition-slow);
}

.hero__game-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--deep-ocean);
}

.section-footer {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ===== GAME SHOWCASE ===== */
.game-showcase {
    padding: var(--space-2xl) 0;
    background: rgba(30, 136, 229, 0.03);
}

.game-card {
    position: relative;
    display: flex;
    gap: var(--space-xl);
    background: var(--glass-bg-solid);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: var(--space-xl);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: var(--transition-normal);
}

.game-card--featured {
    max-width: 900px;
    margin: 0 auto;
}

.game-card__image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.game-card__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.game-card__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 99, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.game-card:hover .game-card__play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral-gold), var(--sunset-orange));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn__icon {
    width: 30px;
    height: 30px;
    fill: white;
    margin-left: 4px;
}

.game-card__content {
    flex: 1;
}

.game-card__title {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-ocean);
}

.game-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--deep-ocean);
    opacity: 0.7;
    font-size: 0.95rem;
}

.game-card__description {
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
    line-height: 1.7;
}

.game-card__features {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.feature-tag {
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, var(--wave-teal), var(--seaweed-green));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, rgba(248, 253, 255, 0.5) 0%, rgba(30, 136, 229, 0.05) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    position: relative;
    text-align: center;
    padding: var(--space-xl);
    background: var(--glass-bg-solid);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--glass-shadow);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--sea-blue), var(--wave-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.feature-card__title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-ocean);
}

.feature-card__description {
    color: var(--deep-ocean);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== ARTICLES SECTION ===== */
.articles-section {
    padding: var(--space-2xl) 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.article-card {
    position: relative;
    background: var(--glass-bg-solid);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--glass-shadow);
}

.article-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
}

.article-card__image--placeholder-1 {
    background: linear-gradient(135deg, #0a2463 0%, #1e88e5 50%, #26a69a 100%);
}

.article-card__image--placeholder-2 {
    background: linear-gradient(135deg, #26a69a 0%, #4caf50 50%, #1e88e5 100%);
}

.article-card__image--placeholder-3 {
    background: linear-gradient(135deg, #ffc107 0%, #ff7043 50%, #1e88e5 100%);
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.article-card__content {
    padding: var(--space-lg);
}

.article-card__title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-ocean);
}

.article-card__excerpt {
    margin-bottom: var(--space-md);
    color: var(--deep-ocean);
    opacity: 0.8;
    line-height: 1.6;
}

.article-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--deep-ocean);
    opacity: 0.6;
}

.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--space-2xl) 0;
    background: rgba(30, 136, 229, 0.03);
}

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

.faq-item {
    background: var(--glass-bg-solid);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--sea-blue);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-ocean);
    text-align: left;
    gap: var(--space-sm);
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: var(--sea-blue);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--deep-ocean);
    opacity: 0.85;
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-2xl) 0;
}

.cta-card {
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--sea-blue) 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 50px rgba(10, 36, 99, 0.3);
}

.cta-card__title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.cta-card__description {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 9999;
    max-width: 400px;
    background: var(--glass-bg-solid);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: var(--space-lg);
    box-shadow: 0 10px 40px rgba(10, 36, 99, 0.2);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-consent__text {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
    color: var(--deep-ocean);
}

.cookie-consent__text a {
    color: var(--sea-blue);
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    gap: var(--space-sm);
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
    background: linear-gradient(135deg, var(--pearl-white) 0%, #e3f2fd 50%, #b3e5fc 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 Q300,120 600,60 T1200,60 L1200,120 L0,120 Z' fill='%23f8fdff' fill-opacity='1'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 120px;
}

.page-hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--deep-ocean);
    margin-bottom: var(--space-md);
    background: linear-gradient(45deg, var(--deep-ocean), var(--sea-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero__subtitle {
    font-size: 1.2rem;
    color: var(--deep-ocean);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: var(--space-2xl) 0;
}

.content-block {
    margin-bottom: var(--space-2xl);
}

.content-block__title {
    font-size: 2rem;
    color: var(--deep-ocean);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--wave-teal);
    display: inline-block;
}

.content-block p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--deep-ocean);
    opacity: 0.9;
}

.text-link {
    color: var(--sea-blue);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.text-link:hover {
    color: var(--wave-teal);
}

/* ===== ABOUT PAGE ===== */
.about-game {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-game__image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--glass-shadow);
}

.about-game__image img {
    width: 100%;
    height: auto;
}

.about-game__info p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-game__info h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-ocean);
}

.about-game__highlights {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.about-game__highlights li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
    line-height: 1.6;
}

.about-game__highlights li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--wave-teal);
    font-size: 1rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.mission-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--glass-bg-solid);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: var(--transition-normal);
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.mission-card__title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-ocean);
}

.mission-card__description {
    color: var(--deep-ocean);
    opacity: 0.8;
    line-height: 1.6;
}

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

.testimonial-card {
    padding: var(--space-xl);
    background: var(--glass-bg-solid);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

.testimonial-card__stars {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

.testimonial-card__text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--deep-ocean);
    opacity: 0.9;
}

.testimonial-card__author {
    font-weight: 600;
    color: var(--sea-blue);
    font-size: 0.95rem;
}

/* ===== HOW TO PLAY PAGE ===== */
.guide-intro {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--glass-bg-solid);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

.guide-intro__text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: var(--deep-ocean);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
}

.guide-section {
    margin-bottom: var(--space-2xl);
}

.guide-section__title {
    font-size: 1.8rem;
    color: var(--deep-ocean);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.guide-section__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sea-blue), var(--wave-teal));
    color: white;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.guide-section__content {
    padding-left: calc(50px + var(--space-md));
}

.guide-section__content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--deep-ocean);
    opacity: 0.9;
}

.guide-subtitle {
    font-size: 1.3rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--deep-ocean);
}

.guide-steps {
    margin-top: var(--space-lg);
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--glass-bg-solid);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.guide-step__number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--coral-gold), var(--sunset-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.guide-step__content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--deep-ocean);
}

.guide-step__content p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Controls Table */
.controls-table {
    margin: var(--space-md) 0;
    background: var(--glass-bg-solid);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.controls-row {
    display: flex;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

.controls-row:last-child {
    border-bottom: none;
}

.controls-key {
    font-weight: 600;
    color: var(--sea-blue);
    min-width: 180px;
    font-family: var(--font-body);
    background: rgba(30, 136, 229, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 6px;
    text-align: center;
    margin-right: var(--space-md);
}

.controls-action {
    color: var(--deep-ocean);
    opacity: 0.85;
}

/* Objectives */
.objectives-list {
    margin-top: var(--space-lg);
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--glass-bg-solid);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.objective-item__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.objective-item__content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--deep-ocean);
}

.objective-item__content p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.tip-card {
    position: relative;
    padding: var(--space-lg);
    background: var(--glass-bg-solid);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px var(--glass-shadow);
}

.tip-card__number {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--wave-teal), var(--seaweed-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.tip-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-ocean);
}

.tip-card__text {
    color: var(--deep-ocean);
    opacity: 0.8;
    line-height: 1.6;
}

/* Advanced List */
.advanced-list {
    list-style: none;
    margin-top: var(--space-md);
}

.advanced-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid var(--glass-border);
}

.advanced-list li:last-child {
    border-bottom: none;
}

.advanced-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
}

/* Guide CTA */
.guide-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--sea-blue) 100%);
    border-radius: 20px;
    color: white;
    margin-top: var(--space-xl);
}

.guide-cta h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.guide-cta p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

/* ===== BLOG PAGE ===== */
.blog-section {
    padding: var(--space-2xl) 0;
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.blog-filter__btn {
    padding: var(--space-xs) var(--space-lg);
    border: 2px solid var(--glass-border);
    background: var(--glass-bg-solid);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--deep-ocean);
    transition: var(--transition-fast);
}

.blog-filter__btn:hover,
.blog-filter__btn--active {
    background: linear-gradient(135deg, var(--sea-blue), var(--wave-teal));
    color: white;
    border-color: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.blog-card {
    background: var(--glass-bg-solid);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: var(--transition-normal);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--glass-shadow);
}

.blog-card__image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
}

.blog-card__image--placeholder-1 {
    background: linear-gradient(135deg, #0a2463 0%, #1e88e5 50%, #26a69a 100%);
}

.blog-card__image--placeholder-2 {
    background: linear-gradient(135deg, #26a69a 0%, #4caf50 50%, #1e88e5 100%);
}

.blog-card__image--placeholder-3 {
    background: linear-gradient(135deg, #ffc107 0%, #ff7043 50%, #1e88e5 100%);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-card__content {
    padding: var(--space-lg);
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.category-badge--guides {
    background: rgba(30, 136, 229, 0.15);
    color: var(--sea-blue);
}

.category-badge--tips {
    background: rgba(38, 166, 154, 0.15);
    color: var(--wave-teal);
}

.category-badge--community {
    background: rgba(255, 193, 7, 0.15);
    color: #e6a800;
}

.blog-card__title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-ocean);
    line-height: 1.4;
}

.blog-card__excerpt {
    margin-bottom: var(--space-md);
    color: var(--deep-ocean);
    opacity: 0.8;
    line-height: 1.6;
}

.blog-card__meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.85rem;
    color: var(--deep-ocean);
    opacity: 0.6;
    margin-bottom: var(--space-md);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form-wrapper {
    background: var(--glass-bg-solid);
    padding: var(--space-xl);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

.contact-form__title {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-ocean);
}

.contact-form__description {
    margin-bottom: var(--space-xl);
    color: var(--deep-ocean);
    opacity: 0.8;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--deep-ocean);
    font-size: 0.95rem;
}

.required {
    color: var(--sunset-orange);
}

.form-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--deep-ocean);
    background: white;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--sea-blue);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.form-input::placeholder {
    color: var(--deep-ocean);
    opacity: 0.4;
}

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

.form-select {
    cursor: pointer;
    appearance: auto;
}

.field-error {
    border-color: var(--sunset-orange) !important;
    box-shadow: 0 0 0 4px rgba(255, 112, 67, 0.1) !important;
}

.error-message {
    color: var(--sunset-orange);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 112, 67, 0.1);
    border-radius: 8px;
}

.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.form-success__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.form-success__title {
    font-size: 1.5rem;
    color: var(--seaweed-green);
    margin-bottom: var(--space-sm);
}

.form-success__text {
    color: var(--deep-ocean);
    opacity: 0.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    padding: var(--space-lg);
    background: var(--glass-bg-solid);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px var(--glass-shadow);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.contact-info-card__icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.contact-info-card__title {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--deep-ocean);
}

.contact-info-card__text {
    color: var(--deep-ocean);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

.contact-info-card__link {
    color: var(--sea-blue);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-info-card__link:hover {
    color: var(--wave-teal);
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: var(--space-2xl) 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg-solid);
    padding: var(--space-2xl);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

.legal-block {
    margin-bottom: var(--space-2xl);
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.6rem;
    color: var(--deep-ocean);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--wave-teal);
}

.legal-block h3 {
    font-size: 1.2rem;
    color: var(--deep-ocean);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-block p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--deep-ocean);
    opacity: 0.9;
}

.legal-block ul {
    list-style: disc;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-block ul li {
    margin-bottom: var(--space-xs);
    line-height: 1.7;
    color: var(--deep-ocean);
    opacity: 0.85;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.legal-table thead {
    background: linear-gradient(135deg, var(--sea-blue), var(--wave-teal));
    color: white;
}

.legal-table th {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-weight: 600;
}

.legal-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--glass-border);
    line-height: 1.6;
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:nth-child(even) {
    background: rgba(30, 136, 229, 0.03);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, #0d3b8a 100%);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
    overflow: hidden;
}

.footer__ocean-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0 Q300,60 600,0 T1200,0 L1200,120 L0,120 Z' fill='%2326a69a' fill-opacity='0.2'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 120px;
    animation: wave-reverse 15s linear infinite;
}

@keyframes wave-reverse {
    0% { background-position-x: 1200px; }
    100% { background-position-x: 0; }
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.footer__title {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    background: linear-gradient(45deg, var(--coral-gold), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__description {
    margin-bottom: var(--space-md);
    opacity: 0.9;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--coral-gold);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer__section-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--coral-gold);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-xs);
}

.footer__links a {
    opacity: 0.9;
    transition: var(--transition-fast);
    line-height: 1.8;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--coral-gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer__copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer__links-inline {
    display: flex;
    gap: var(--space-lg);
}

.footer__links-inline a {
    opacity: 0.8;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer__links-inline a:hover {
    opacity: 1;
    color: var(--coral-gold);
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: calc(var(--header-height) + var(--space-sm));
    right: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.notification--info {
    background: linear-gradient(135deg, var(--sea-blue), var(--wave-teal));
}

.notification--success {
    background: linear-gradient(135deg, var(--seaweed-green), var(--wave-teal));
}

.notification--error {
    background: linear-gradient(135deg, var(--sunset-orange), #e53935);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RIPPLE EFFECT ===== */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-game {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar__menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--glass-bg-solid);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        padding: var(--space-lg);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .navbar__menu.navbar__menu--open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar__list {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .navbar__toggle {
        display: flex;
    }
    
    .navbar__actions {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--header-height) + var(--space-xl));
    }
    
    .hero__game-preview {
        margin-top: var(--space-xl);
    }
    
    .hero__game-image {
        transform: none;
        max-width: 100%;
    }
    
    .hero__game-image:hover {
        transform: none;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .game-card {
        flex-direction: column;
        position: relative;
}
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .guide-section__content {
        padding-left: 0;
    }
    
    .guide-section__title {
        font-size: 1.4rem;
    }
    
    .controls-row {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .controls-key {
        min-width: auto;
        margin-right: 0;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .legal-content {
        padding: var(--space-lg);
    }
    
    .legal-table {
        font-size: 0.85rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .cookie-consent {
        left: var(--space-sm);
        right: var(--space-sm);
        bottom: var(--space-sm);
        max-width: none;
    }
    
    .cta-card {
        padding: var(--space-xl);
    }
    
    .cta-card__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .blog-filter {
        gap: var(--space-xs);
    }
    
    .blog-filter__btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.85rem;
    }
    
    .page-hero__title {
        font-size: 1.8rem;
    }
    
    .cookie-consent__actions {
        flex-direction: column;
    }
}