/* ===================================
   EINTRACHT-INFO V2 - MAGAZINE STYLE
   =================================== */

:root {
    /* Colors */
    --primary: #e1000f;
    --primary-dark: #b30000;
    --accent: #ff3333;
    --black: #0d0d0d;
    --dark: #1a1a1a;
    --gray-900: #2a2a2a;
    --gray-800: #3a3a3a;
    --gray-700: #4a4a4a;
    --gray-600: #6a6a6a;
    --gray-400: #9a9a9a;
    --gray-200: #d0d0d0;
    --white: #ffffff;
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --max-width: 1400px;
    --gutter: 24px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===================================
   RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    transition: all 0.6s var(--ease-out);
}

.layer-1 {
    transform: rotate(0deg);
}

.layer-2 {
    transform: rotate(45deg);
}

.brand-icon:hover .layer-1 {
    transform: rotate(90deg);
}

.brand-icon:hover .layer-2 {
    transform: rotate(135deg);
}

.icon-text {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gray-400);
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    position: relative;
    transition: all 0.3s var(--ease-out);
}

.nav-number {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s var(--ease-out);
}

.nav-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    transition: all 0.3s var(--ease-out);
}

.nav-item:hover .nav-number,
.nav-item.active .nav-number {
    opacity: 1;
    transform: translateY(0);
}

.nav-item:hover .nav-label,
.nav-item.active .nav-label {
    color: var(--white);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s var(--ease-out);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-admin {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px var(--gutter) 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid var(--primary);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: -7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(10deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.3s forwards;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--primary);
}

.label-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.title-line:nth-child(1) {
    animation: slideUp 1s var(--ease-out) 0.5s forwards;
}

.title-line:nth-child(2) {
    animation: slideUp 1s var(--ease-out) 0.7s forwards;
}

.title-line:nth-child(3) {
    animation: slideUp 1s var(--ease-out) 0.9s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.title-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.title-highlight::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -10px;
    right: -10px;
    height: 20px;
    background: var(--primary);
    opacity: 0.1;
    z-index: -1;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 1.1s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 1.3s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s var(--ease-out);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 0, 15, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-800);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-icon {
    display: flex;
    transition: transform 0.4s var(--ease-out);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.stat-box {
    text-align: center;
    position: relative;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-600);
}

.stat-bar {
    width: 100%;
    height: 2px;
    background: var(--gray-900);
    margin-top: 16px;
    position: relative;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: var(--primary);
    animation: progressBar 2s var(--ease-out) 2s forwards;
}

@keyframes progressBar {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 2s forwards;
}

.scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-600);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SECTIONS
   =================================== */

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Featured Section */
.featured-section {
    padding: 120px 0;
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out);
}

.featured-post.visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.featured-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 0, 15, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
}

.featured-post:hover .featured-overlay {
    opacity: 1;
}

.featured-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-content {
    padding: 40px 0;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.meta-badge {
    padding: 6px 16px;
    background: var(--gray-900);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.meta-date {
    font-size: 13px;
    color: var(--gray-600);
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.featured-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--gray-900);
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
}

.author-role {
    font-size: 12px;
    color: var(--gray-600);
}

.featured-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s var(--ease-out);
}

.featured-link:hover {
    gap: 16px;
}

/* Posts Section */
.posts-section {
    padding: 120px 0;
    background: var(--dark);
}

.section-header {
    margin-bottom: 80px;
}

.header-top {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}

.section-number {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-900);
    letter-spacing: -4px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.title-accent {
    color: var(--primary);
}

.header-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-description {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-400);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s var(--ease-out);
}

.section-link:hover {
    gap: 16px;
    color: var(--primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 48px;
}

.post-item {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.post-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--index) * 0.1s);
}

.post-number {
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    z-index: 0;
}

.post-thumb {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-bottom: 24px;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.post-item:hover .post-thumb img {
    transform: scale(1.1);
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 0, 15, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
}

.post-item:hover .thumb-overlay {
    opacity: 1;
}

.post-info {
    position: relative;
    z-index: 1;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
}

.post-category {
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.post-date {
    color: var(--gray-600);
}

.post-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.post-title a {
    transition: color 0.3s var(--ease-out);
}

.post-item:hover .post-title a {
    color: var(--primary);
}

.post-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-900);
}

.post-author {
    font-size: 13px;
    color: var(--gray-600);
}

.post-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-900);
    border-radius: 50%;
    color: var(--gray-600);
    transition: all 0.3s var(--ease-out);
}

.post-item:hover .post-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Table Section */
.table-section {
    padding: 120px 0;
}

.table-wrapper {
    background: var(--dark);
    border: 1px solid var(--gray-900);
    padding: 48px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out);
}

.table-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.table-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
}

.table-title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.table-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(225, 0, 15, 0.1);
    border: 1px solid var(--primary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

.table-content {
    min-height: 300px;
    margin-bottom: 32px;
}

.table-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 80px 20px;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--gray-900);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.table-footer {
    padding-top: 32px;
    border-top: 1px solid var(--gray-900);
    text-align: center;
}

.table-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--gray-900);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s var(--ease-out);
}

.table-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    gap: 16px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark);
    border-top: 1px solid var(--gray-900);
    padding: 80px 0 40px;
    margin-top: 120px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.brand-icon.small {
    width: 36px;
    height: 36px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-900);
    color: var(--gray-600);
    transition: all 0.3s var(--ease-out);
}

.social-icon:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-600);
    transition: all 0.3s var(--ease-out);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.newsletter-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--black);
    border: 1px solid var(--gray-900);
    color: var(--white);
    font-size: 13px;
    font-family: inherit;
    transition: all 0.3s var(--ease-out);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    transition: all 0.3s var(--ease-out);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--gray-900);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px !important;
}

/* ===================================
   COOKIE CONSENT
   =================================== */

.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: var(--dark);
    border: 1px solid var(--gray-900);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    z-index: 9999;
    animation: slideUp 0.6s var(--ease-out);
}

.cookie-content {
    flex: 1;
    display: flex;
    gap: 16px;
}

.cookie-icon {
    font-size: 32px;
}

.cookie-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.cookie-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-out);
}

.cookie-btn:hover {
    background: var(--primary-dark);
}

/* ===================================
   UTILITIES
   =================================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 40px 40px;
        gap: 32px;
        transition: right 0.4s var(--ease-out);
        border-left: 1px solid var(--gray-900);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-number {
        font-size: 72px;
    }
    
    .header-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 20px 16px;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .featured-image {
        height: 400px;
    }
    
    .cookie-consent {
        flex-direction: column;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}