/*
 * PROJECT: TaborChiro Gaming Hub
 * DOMAIN: taborchiro.com
 * GAME: Checkers Master
 * 
 * DESIGN:
 * - CSS: BEM
 * - Palette: Soft UI
 * - Effect: Glassmorphism
 * - Fonts: Lexend + Red Hat Display
 * - Buttons: Soft shadows with hover effects
 * 
 * Style: #23 - Soft UI
 */

:root {
    /* Soft UI Color Palette */
    --soft-background: #e0e5ec;
    --soft-surface: #ffffff;
    --soft-primary: #667eea;
    --soft-secondary: #764ba2;
    --soft-accent: #f093fb;
    --soft-text: #4a5568;
    --soft-text-light: #718096;
    --soft-shadow-light: #ffffff;
    --soft-shadow-dark: #a3b1c6;
    --soft-border: #cbd5e0;
    --soft-success: #48bb78;
    --soft-warning: #ed8936;
    --soft-error: #f56565;
    
    /* Typography */
    --font-heading: 'Lexend', sans-serif;
    --font-body: 'Red Hat Display', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    
    /* Layout */
    --header-height: 70px;
    
    /* Shadows */
    --shadow-soft: 9px 9px 16px var(--soft-shadow-dark), -9px -9px 16px var(--soft-shadow-light);
    --shadow-soft-inset: inset 9px 9px 16px var(--soft-shadow-dark), inset -9px -9px 16px var(--soft-shadow-light);
    --shadow-soft-hover: 6px 6px 12px var(--soft-shadow-dark), -6px -6px 12px var(--soft-shadow-light);
    --shadow-soft-sm: 4px 4px 8px var(--soft-shadow-dark), -4px -4px 8px var(--soft-shadow-light);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--soft-background);
    color: var(--soft-text);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

ul, ol {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--soft-text);
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
}

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

.main {
    min-height: calc(100vh - var(--header-height));
    padding: var(--space-xl) 0;
}

/* === HEADER === */
.header {
    background: var(--soft-surface);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--soft-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.logo:hover {
    color: var(--soft-secondary);
}

/* === NAVIGATION === */
.nav__list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: var(--soft-text);
    font-family: var(--font-body);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
    color: var(--soft-primary);
    background: rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
}

/* === MOBILE MENU BUTTON === */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--soft-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* === HERO SECTION === */
.hero {
    text-align: center;
    padding: var(--space-xxl) var(--space-xl);
    background: linear-gradient(135deg, var(--soft-surface) 0%, var(--soft-background) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-xxl);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__title {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    position: relative;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--soft-text-light);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    background: var(--soft-surface);
    color: var(--soft-text);
    text-align: center;
}

.btn:hover {
    box-shadow: var(--shadow-soft-hover);
    transform: translateY(-2px);
}

.btn:active {
    box-shadow: var(--shadow-soft-inset);
    transform: translateY(0);
}

.btn--primary {
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    color: white;
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--soft-secondary), var(--soft-primary));
}

.btn--large {
    padding: var(--space-lg) var(--space-xxl);
    font-size: 1.125rem;
}

.btn--play {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xxl);
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    animation: playPulse 2s ease-in-out infinite;
}

.btn--play:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 12px 12px 20px var(--soft-shadow-dark), -12px -12px 20px var(--soft-shadow-light);
    animation: none;
}

@keyframes playPulse {
    0%, 100% { box-shadow: var(--shadow-soft); }
    50% { box-shadow: 12px 12px 24px var(--soft-shadow-dark), -12px -12px 24px var(--soft-shadow-light); }
}

.btn--read {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    color: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft-sm);
    position: relative;
    z-index: 2;
}

.btn--read:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft-hover);
}

/* === GAME SECTION === */
.game-section {
    margin-bottom: var(--space-xxl);
}

.game-section__title {
    text-align: center;
    margin-bottom: var(--space-xxl);
    font-size: 2rem;
}

.game-card {
    position: relative;
    background: var(--soft-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--space-xxl);
    text-align: center;
    margin-bottom: var(--space-xl);
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.game-card__content {
    position: relative;
    z-index: 2;
}

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

.game-card__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: var(--shadow-soft);
}

.game-card__title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-card__description {
    color: var(--soft-text-light);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* === FEATURES GRID === */
.features-section {
    margin-bottom: var(--space-xxl);
}

.features-section__title {
    text-align: center;
    margin-bottom: var(--space-xxl);
    font-size: 2rem;
}

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

.feature-card {
    position: relative;
    background: var(--soft-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-soft-hover);
    transform: translateY(-5px);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-soft-sm);
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.feature-card__text {
    color: var(--soft-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === FAQ ACCORDION === */
.faq-section {
    margin-bottom: var(--space-xxl);
}

.faq-section__title {
    text-align: center;
    margin-bottom: var(--space-xxl);
    font-size: 2rem;
}

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

.faq-item {
    background: var(--soft-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--soft-text);
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--soft-primary);
}

.faq-question__icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-md);
    color: var(--soft-primary);
}

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

.faq-item.active .faq-question {
    color: var(--soft-primary);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    color: var(--soft-text-light);
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    text-align: center;
    padding: var(--space-xxl);
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xxl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section__title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
    position: relative;
    -webkit-text-fill-color: white;
}

.cta-section__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.btn--cta {
    background: var(--soft-surface);
    color: var(--soft-primary);
    padding: var(--space-lg) var(--space-xxl);
    font-size: 1.15rem;
    position: relative;
}

.btn--cta:hover {
    background: white;
    transform: translateY(-3px);
}

/* === ARTICLE CARDS === */
.articles-section {
    margin-bottom: var(--space-xxl);
}

.articles-section__title {
    text-align: center;
    margin-bottom: var(--space-xxl);
    font-size: 2rem;
}

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

.article-card {
    position: relative;
    background: var(--soft-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: var(--shadow-soft-hover);
    transform: translateY(-5px);
}

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

.article-card__image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.article-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, var(--soft-surface));
}

.article-card__content {
    position: relative;
    z-index: 2;
    padding: var(--space-xl);
}

.article-card__badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.article-card__title {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--soft-text);
    line-height: 1.4;
}

.article-card__excerpt {
    color: var(--soft-text-light);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-card__meta {
    font-size: 0.85rem;
    color: var(--soft-text-light);
    display: flex;
    gap: var(--space-md);
    align-items: center;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

/* === BLOG CARDS === */
.blog-card {
    position: relative;
    background: var(--soft-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow-soft-hover);
    transform: translateY(-5px);
}

.blog-card__image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

.blog-card__content {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
    align-self: flex-start;
}

.blog-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--soft-text);
    line-height: 1.4;
}

.blog-card__excerpt {
    color: var(--soft-text-light);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.blog-card__meta {
    font-size: 0.85rem;
    color: var(--soft-text-light);
    display: flex;
    gap: var(--space-md);
    align-items: center;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

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

/* === FORMS === */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--soft-text);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--soft-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--soft-background);
    color: var(--soft-text);
    transition: all 0.3s ease;
    box-shadow: inset 4px 4px 8px var(--soft-shadow-dark), inset -4px -4px 8px var(--soft-shadow-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--soft-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: var(--soft-surface);
}

.form-input--error {
    border-color: var(--soft-error) !important;
    box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.15) !important;
}

.form-error {
    color: var(--soft-error);
    font-size: 0.85rem;
    margin-top: var(--space-xs);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

/* === CONTACT GRID === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xxl);
}

.contact-info-card {
    background: var(--soft-surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-lg);
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* === PAGE CONTENT === */
.page-content {
    background: var(--soft-surface);
    padding: var(--space-xxl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-xxl);
}

.page-content h2 {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--soft-border);
}

.page-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.page-content ul,
.page-content ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: var(--space-sm);
    color: var(--soft-text-light);
    line-height: 1.6;
}

.page-content a {
    color: var(--soft-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: var(--soft-secondary);
}

/* === GUIDE SECTION (How to Play) === */
.guide-section {
    margin-bottom: var(--space-xxl);
}

.guide-card {
    background: var(--soft-surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-xl);
}

.guide-card h3 {
    color: var(--soft-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.guide-card ul {
    padding-left: var(--space-xl);
    list-style: disc;
}

.guide-card li {
    margin-bottom: var(--space-sm);
    color: var(--soft-text-light);
}

.guide-card li strong {
    color: var(--soft-text);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.guide-step {
    background: var(--soft-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft-hover);
}

.guide-step__number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    box-shadow: var(--shadow-soft-sm);
}

.guide-step__title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.guide-step__text {
    color: var(--soft-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === TIPS GRID === */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.tip-card {
    background: var(--soft-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft-sm);
    padding: var(--space-lg);
    border-left: 4px solid var(--soft-primary);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.tip-card__title {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    color: var(--soft-primary);
}

.tip-card__text {
    color: var(--soft-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* === VALUES SECTION === */
.values-card {
    background: var(--soft-surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-xxl);
}

.values-card h3 {
    color: var(--soft-primary);
    margin-top: var(--space-lg);
}

.values-card h3:first-child {
    margin-top: 0;
}

/* === COOKIE CONSENT === */
.cookie-consent {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: var(--soft-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--space-xl);
    max-width: 400px;
    z-index: 9999;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent--hidden {
    display: none;
}

.cookie-consent__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--soft-text);
}

.cookie-consent__text {
    font-size: 0.9rem;
    color: var(--soft-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

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

.cookie-consent__btn {
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent__btn--accept {
    background: linear-gradient(135deg, var(--soft-primary), var(--soft-secondary));
    color: white;
    box-shadow: var(--shadow-soft-sm);
}

.cookie-consent__btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.cookie-consent__btn--decline {
    background: var(--soft-background);
    color: var(--soft-text-light);
}

.cookie-consent__btn--decline:hover {
    background: var(--soft-border);
}

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

/* === NOTIFICATION === */
.notification {
    position: fixed;
    top: calc(var(--header-height) + var(--space-lg));
    right: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 500;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-soft);
    max-width: 400px;
}

.notification--visible {
    transform: translateX(0);
}

.notification--success {
    background: var(--soft-success);
    color: white;
}

.notification--error {
    background: var(--soft-error);
    color: white;
}

.notification--info {
    background: var(--soft-primary);
    color: white;
}

/* === ANIMATION === */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* === STARS === */
.stars {
    color: #ffc107;
}

/* === FOOTER === */
.footer {
    background: var(--soft-surface);
    box-shadow: 0 -9px 16px var(--soft-shadow-dark);
    margin-top: var(--space-xxl);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xxl) var(--space-md) var(--space-lg);
}

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

.footer__title {
    font-family: var(--font-heading);
    color: var(--soft-primary);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.footer__subtitle {
    color: var(--soft-text);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.footer__description {
    color: var(--soft-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: var(--space-sm);
}

.footer__link {
    color: var(--soft-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer__link:hover {
    color: var(--soft-primary);
}

.footer__text {
    color: var(--soft-text-light);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.footer__bottom {
    border-top: 1px solid var(--soft-border);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer__copyright {
    color: var(--soft-text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--soft-surface);
        box-shadow: var(--shadow-soft);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav--mobile-open {
        transform: translateY(0);
    }
    
    .nav__list {
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-sm);
    }
    
    .nav__link {
        display: block;
        padding: var(--space-md);
        text-align: center;
        width: 100%;
        border-radius: var(--radius-sm);
    }
    
    .nav__link:hover,
    .nav__link--active {
        background: rgba(102, 126, 234, 0.1);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .articles-grid,
    .features,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: var(--space-xl);
        position: relative;
}
    
    .cookie-consent {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
        max-width: none;
    }
    
    .features-section__title,
    .faq-section__title,
    .articles-section__title,
    .game-section__title {
        margin-bottom: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero__title {
        font-size: 1.8rem;
    }
    
    .btn--large,
    .btn--play {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    .game-card,
    .feature-card,
    .article-card__content,
    .page-content {
        padding: var(--space-lg);
    }
    
    .game-card__icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .game-card__title {
        font-size: 1.5rem;
    }
    
    .cookie-consent__actions {
        flex-direction: column;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}