/* ============================================================
   GAMER MAGAZIN - CYBER-GAMER DARK THEME
   Teljes stíluslap - Nincs hiányzó rész!
   ============================================================ */

/* --- CSS Változók --- */
:root {
    --bg-primary: #0a0a0e;
    --bg-secondary: #12131a;
    --bg-card: #1a1b26;
    --bg-card-hover: #22233a;
    --border-color: #2f3248;
    --border-glow: #3a3d5c;
    --text-primary: #e8e8f0;
    --text-secondary: #a0a3b8;
    --text-muted: #6b6f8a;
    --accent-red: #ff0055;
    --accent-green: #00ff88;
    --accent-blue: #00b4d8;
    --accent-orange: #ff6600;
    --accent-purple: #9b59b6;
    --accent-red-glow: rgba(255, 0, 85, 0.4);
    --accent-green-glow: rgba(0, 255, 136, 0.4);
    --accent-blue-glow: rgba(0, 180, 216, 0.4);
    --gradient-hero: linear-gradient(135deg, #0a0a0e 0%, #1a1025 50%, #0f1822 100%);
    --gradient-card: linear-gradient(180deg, rgba(26,27,38,0) 0%, rgba(26,27,38,1) 70%);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-glow-red: 0 0 20px rgba(255,0,85,0.3);
    --shadow-glow-green: 0 0 20px rgba(0,255,136,0.3);
    --shadow-glow-blue: 0 0 20px rgba(0,180,216,0.3);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --font-main: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1400px;
    --header-height: 70px;
}

/* --- Alap Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 0, 85, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-green);
}

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

ul, ol {
    list-style: none;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   HEADER & NAVIGÁCIÓ
   ============================================================ */
.site-header {
    background: rgba(10, 10, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    box-shadow: var(--shadow-glow-red);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255,0,85,0.4); }
    50% { box-shadow: 0 0 30px rgba(255,0,85,0.7); }
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    color: var(--accent-red);
    -webkit-text-fill-color: var(--accent-red);
}

/* Navigáció */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: transform var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Keresősáv */
.search-box {
    position: relative;
    flex-shrink: 0;
}

.search-box input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px 8px 38px;
    border-radius: 25px;
    font-size: 0.85rem;
    width: 200px;
    transition: all var(--transition-normal);
    outline: none;
}

.search-box input:focus {
    width: 260px;
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow-blue);
}

.search-box .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
}

/* Mobil menü gomb */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* ============================================================
   NAVIGÁCIÓS DROPDOWN (TÖBBI KATEGÓRIA)
   ============================================================ */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    white-space: nowrap;
}

.nav-dropdown-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-red);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10,10,14,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-dropdown-content a:hover {
    background: rgba(255,0,85,0.1);
    color: #fff;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown.active .nav-dropdown-content {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

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

/* ============================================================
   HERO FEATURED GRID (Aszimmetrikus)
   ============================================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
    margin: 30px 0 40px;
}

.hero-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.hero-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-glow-red);
}

.hero-item:first-child {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.hero-item:nth-child(2) {
    grid-column: 2 / 4;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(transparent, rgba(10,10,14,0.95));
    z-index: 2;
}

.hero-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #fff;
}

.hero-item:first-child .hero-title {
    font-size: 2rem;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.6);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-green);
}

/* ============================================================
   QUICK FILTER BAR
   ============================================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
    box-shadow: var(--shadow-glow-red);
}

/* ============================================================
   SECTION CÍMEK
   ============================================================ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--accent-red);
    border-radius: 2px;
    box-shadow: var(--shadow-glow-red);
}

.section-link {
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.section-link:hover {
    color: var(--accent-green);
}

/* ============================================================
   KÁRTYÁK (Posztok)
   ============================================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.posts-grid.small {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,0,85,0.1);
}

.post-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.post-card:hover .post-card-image img {
    transform: scale(1.08);
}

.post-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.post-card-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: var(--accent-green);
    padding: 5px 9px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.post-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #fff;
}

.post-card-title a {
    color: inherit;
}

.post-card-title a:hover {
    color: var(--accent-blue);
}

.post-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   OLDALSÁV (Sidebar)
   ============================================================ */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin: 30px 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.sidebar-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-box-title::before {
    content: '';
    width: 3px;
    height: 20px;
    background: var(--accent-green);
    border-radius: 2px;
}

/* Hét játéka */
.game-of-week {
    text-align: center;
}

.game-of-week img {
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}

.game-of-week .gotw-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.game-of-week .gotw-rating {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--accent-green-glow);
}

/* Legfrissebb lista */
.recent-post-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.recent-post-info h4 a {
    color: var(--text-primary);
}

.recent-post-info h4 a:hover {
    color: var(--accent-blue);
}

.recent-post-info .rp-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Discord banner */
.discord-banner {
    background: linear-gradient(135deg, #5865F2, #4752c4);
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-md);
}

.discord-banner h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.discord-banner p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.discord-btn {
    display: inline-block;
    background: #fff;
    color: #5865F2;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.discord-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* ============================================================
   SINGLE POST OLDAL
   ============================================================ */
.article-hero {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid var(--border-color);
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(transparent, rgba(10,10,14,0.97));
}

.article-category {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
}

.article-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Játék Adatlap Box */
.game-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.game-info-item {
    text-align: center;
}

.game-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.game-info-value {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.game-info-value.rating-big {
    font-size: 2rem;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--accent-green-glow);
}

/* Cikk tartalom */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #fff;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #fff;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-red);
    background: rgba(255,0,85,0.05);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
    box-shadow: var(--shadow-glow-red);
}

.article-content img {
    border-radius: var(--radius-md);
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

/* Pros & Cons */
.pros-cons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.pros-box, .cons-box {
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.pros-box {
    background: rgba(0,255,136,0.03);
    border-left: 4px solid var(--accent-green);
}

.cons-box {
    background: rgba(255,0,85,0.03);
    border-left: 4px solid var(--accent-red);
}

.pros-box h3, .cons-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.pros-box h3 { color: var(--accent-green); }
.cons-box h3 { color: var(--accent-red); }

.pros-box ul, .cons-box ul {
    list-style: none;
}

.pros-box ul li, .cons-box ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pros-box ul li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

.cons-box ul li::before {
    content: '✗';
    color: var(--accent-red);
    font-weight: 700;
    flex-shrink: 0;
}

/* Kapcsolódó cikkek */
.related-posts {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    padding: 40px 0 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    padding: 4px 0;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }
    .hero-item:first-child {
        grid-row: 1 / 3;
        grid-column: 1 / 2;
    }
    .hero-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .hero-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    .hero-item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .article-hero {
        height: 300px;
    }
    .article-hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10,10,14,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 5px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .search-box input {
        width: 140px;
    }
    .search-box input:focus {
        width: 180px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 200px 200px 200px;
        gap: 10px;
    }
    .hero-item:first-child,
    .hero-item:nth-child(2),
    .hero-item:nth-child(3),
    .hero-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .hero-item:first-child .hero-title {
        font-size: 1.3rem;
    }
    .hero-title {
        font-size: 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons-container {
        grid-template-columns: 1fr;
    }
    
    .article-hero {
        height: 220px;
    }
    .article-hero-title {
        font-size: 1.4rem;
    }
    
    /* Mobil dropdown teljes szélességű */
    .nav-dropdown {
        display: block;
        width: 100%;
    }
    .nav-dropdown-btn {
        width: 100%;
        text-align: left;
    }
    .nav-dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.02);
        border-radius: 0;
        padding: 0 0 0 15px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        gap: 10px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .search-box input {
        width: 100px;
        padding: 8px 12px 8px 30px;
        font-size: 0.75rem;
    }
    .search-box input:focus {
        width: 140px;
    }
    .search-box .search-icon {
        left: 10px;
    }
    .section-title {
        font-size: 1.2rem;
    }
}