/*
Theme Name: Archlord EP7
Theme URI: https://riseofchantra.com
Description: Dark fantasy theme for Archlord - Rise of Chantra EP7
Version: 5.0.0
Author: Rise of Chantra Team
Text Domain: archlord-ep7
*/

:root {
    --bg-dark: #0a0806;
    --bg-card: rgba(10,8,4,0.85);
    --border-gold: #6b4f2e;
    --border-gold-light: #8b6d3f;
    --gold: #c9a44a;
    --gold-light: #e2c36a;
    --gold-dark: #8b6d2e;
    --fire: #c44020;
    --text: #b5a88a;
    --text-muted: #7a6f5c;
    --text-light: #e8dcc4;
    --font-display: 'Cinzel', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --max-width: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ========================================
   FULL PAGE BACKGROUND
   ======================================== */
body {
    background: var(--bg-dark) url('img/bg.png') center center / cover no-repeat fixed;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    border: 2px solid var(--gold);
    text-align: center;
    transition: all 0.3s;
    background: rgba(10,8,4,0.7);
    color: var(--gold-light);
    backdrop-filter: blur(4px);
}
.btn:hover {
    color: #fff;
    background: rgba(180,130,50,0.25);
    box-shadow: 0 0 30px rgba(180,130,50,0.3), inset 0 0 30px rgba(180,130,50,0.08);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255,220,150,0.5);
}
.btn-cta {
    background: linear-gradient(180deg, rgba(180,130,50,0.3) 0%, rgba(100,70,20,0.2) 100%);
    box-shadow: 0 0 15px rgba(180,130,50,0.15);
}
.btn-cta:hover {
    background: linear-gradient(180deg, rgba(200,150,60,0.4) 0%, rgba(120,80,30,0.3) 100%);
    box-shadow: 0 0 35px rgba(180,130,50,0.4);
}
.btn-cta-outline {
    background: rgba(10,8,4,0.5);
    border-color: var(--border-gold-light);
    color: var(--text);
}
.btn-cta-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}
.btn-outline {
    background: rgba(10,8,4,0.6);
    color: var(--text);
    border: 2px solid var(--border-gold);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 56px;
    background: linear-gradient(180deg, rgba(6,4,2,0.95) 0%, rgba(6,4,2,0.85) 100%);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 2px 30px rgba(0,0,0,0.8);
}
.site-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 56px;
    gap: 24px;
}
.site-logo { flex-shrink: 0; }
.logo-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(180,130,50,0.3);
}
.site-logo:hover .logo-text { color: var(--gold-light); }
.main-navigation { flex: 1; }
.main-navigation ul { list-style: none; display: flex; gap: 0; justify-content: center; }
.main-navigation li { position: relative; }
.main-navigation a {
    display: block;
    padding: 6px 16px;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a { color: var(--gold-light); }
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(8,6,3,0.97);
    border: 1px solid var(--border-gold);
    min-width: 200px;
    padding: 6px;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}
.main-navigation li:hover > ul { display: flex; }
.main-navigation ul ul a { font-size: 11px; padding: 8px 12px; }
.header-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-header {
    padding: 6px 16px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    white-space: nowrap;
    border: 1px solid var(--border-gold);
    background: rgba(10,8,4,0.6);
    color: var(--text-muted);
}
.btn-header:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(180,130,50,0.08);
}
.btn-header.btn-outline { color: var(--text-muted); }
.btn-header.btn-primary {
    background: linear-gradient(180deg, rgba(180,130,50,0.2), rgba(120,80,30,0.15));
    border-color: var(--gold);
    color: var(--gold-light);
}
.btn-header.btn-primary:hover {
    background: linear-gradient(180deg, rgba(180,130,50,0.3), rgba(120,80,30,0.2));
}
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 1px; }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 40px;
    overflow: hidden;
}
.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 30px rgba(180,130,50,0.3));
    animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-tagline {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 0 40px rgba(180,130,50,0.3);
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

/* ========================================
   MAIN SECTION - Two column layout
   ======================================== */
.main-section {
    position: relative;
    padding: 50px 0;
}
.main-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--border-gold) 25%, var(--gold) 50%, var(--border-gold) 75%, transparent 95%);
}
.main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Panels */
.panel {
    background: rgba(8,6,3,0.85);
    border: 1px solid var(--border-gold);
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.panel:last-child { margin-bottom: 0; }
.panel-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gold);
}
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gold);
}
.panel-header .panel-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.panel-more {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color 0.3s;
}
.panel-more:hover { color: var(--gold-light); }

/* Server Rates Grid */
.srv-rates {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.rate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 10px;
    background: rgba(10,8,4,0.6);
    border: 1px solid rgba(107,79,46,0.3);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.rate-card:hover {
    border-color: rgba(201,164,74,0.4);
    box-shadow: 0 0 12px rgba(201,164,74,0.08);
}
.rate-value {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    text-shadow: 0 0 10px rgba(201,164,74,0.25);
}
.rate-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    opacity: 0.85;
}
.rate-icon svg {
    filter: drop-shadow(0 0 4px rgba(201,164,74,0.3));
}
.rate-label {
    font-size: 11px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* Server Info Rows */
.srv-row {
    padding: 14px 16px;
    background: rgba(10,8,4,0.5);
    border: 1px solid rgba(107,79,46,0.2);
    margin-bottom: 10px;
}
.srv-row:last-of-type { margin-bottom: 0; }
.srv-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}
.srv-hl-name {
    color: var(--gold-light);
    font-weight: 600;
}
.srv-note {
    margin-top: 14px;
    font-size: 11px;
    color: var(--gold);
    font-style: italic;
}

/* News List (column style) */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.news-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(107,79,46,0.2);
    transition: background 0.3s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: rgba(180,130,50,0.03); }
.news-item-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    overflow: hidden;
    border: 1px solid rgba(107,79,46,0.3);
}
.news-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.news-item:hover .news-item-thumb img { transform: scale(1.05); }
.news-item-body {
    flex: 1;
    min-width: 0;
}
.news-item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}
.news-item-title a { color: var(--text-light); }
.news-item-title a:hover { color: var(--gold); }
.news-item-excerpt {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 4px;
}
.news-item-date {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.news-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); }

/* ========================================
   RANKING TABLES
   ======================================== */
.ranking-table {
    width: 100%;
    border-collapse: collapse;
}
.ranking-table thead th {
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-gold);
    text-align: left;
    font-weight: 600;
}
.ranking-table tbody tr {
    border-bottom: 1px solid rgba(107,79,46,0.15);
    transition: background 0.2s;
}
.ranking-table tbody tr:last-child { border-bottom: none; }
.ranking-table tbody tr:hover { background: rgba(180,130,50,0.04); }
.ranking-table td {
    padding: 10px 10px;
    font-size: 13px;
    vertical-align: middle;
}
.rank-col { width: 40px; text-align: center; }
.num-col { text-align: right; }
.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    color: var(--text-muted);
}
.rank-1 { background: linear-gradient(135deg, #d4a843, #b8922e); color: #1a1408; }
.rank-2 { background: linear-gradient(135deg, #8a8a8a, #666); color: #1a1a1a; }
.rank-3 { background: linear-gradient(135deg, #a0522d, #7a3e20); color: #f0e0d0; }
.player-name {
    color: var(--text-light);
    font-weight: 500;
}
.player-class {
    color: var(--text-muted);
    font-size: 12px;
}
.ranking-table .num-col {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold-light);
}
.ranking-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 24px 10px;
    font-size: 12px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background: rgba(6,4,2,0.7);
    backdrop-filter: blur(3px);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--border-gold) 25%, var(--gold) 50%, var(--border-gold) 75%, transparent 95%);
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.cta-section p { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }

/* ========================================
   CONTENT PAGES
   ======================================== */
.site-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px 60px;
    min-height: 60vh;
}
.content-area { width: 100%; }
article.post, article.page {
    background: rgba(10,8,4,0.85);
    border: 1px solid var(--border-gold);
    overflow: hidden;
    margin-bottom: 24px;
}
.post-thumbnail img { width: 100%; display: block; }
.entry-header { padding: 28px 32px 10px; }
.entry-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.entry-title a { color: var(--text-light); }
.entry-title a:hover { color: var(--gold); }
.entry-meta { padding: 0 32px; font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
.entry-content, .entry-summary { padding: 16px 32px 32px; font-size: 14px; line-height: 1.8; color: var(--text); }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { font-family: var(--font-display); color: var(--gold-light); margin: 24px 0 10px; letter-spacing: 1px; }
.entry-content p { margin-bottom: 14px; }
.entry-content ul, .entry-content ol { margin: 10px 0 16px 24px; }
.entry-content blockquote { border-left: 2px solid var(--gold); padding: 12px 20px; margin: 16px 0; background: rgba(180,130,50,0.03); }
.entry-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.entry-content table th { background: rgba(180,130,50,0.06); color: var(--gold-light); padding: 10px 14px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; border-bottom: 1px solid var(--border-gold); }
.entry-content table td { padding: 10px 14px; border-bottom: 1px solid rgba(107,79,46,0.3); }
.entry-footer { padding: 14px 32px; border-top: 1px solid var(--border-gold); font-size: 12px; color: var(--text-muted); }
.more-link { display: inline-block; padding: 8px 20px; border: 1px solid var(--border-gold); color: var(--gold); font-size: 12px; font-weight: 600; margin-top: 10px; letter-spacing: 1px; }
.more-link:hover { border-color: var(--gold); background: rgba(180,130,50,0.08); }

/* Sidebar */
.has-sidebar .site-content { display: flex; gap: 32px; }
.has-sidebar .content-area { flex: 1; min-width: 0; }
.has-sidebar .widget-area { width: 280px; flex-shrink: 0; }
.widget-area .widget { background: rgba(10,8,4,0.85); border: 1px solid var(--border-gold); padding: 20px; margin-bottom: 16px; }
.widget-title { font-family: var(--font-display); font-size: 12px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-gold); }
.widget ul { list-style: none; }
.widget ul li { padding: 6px 0; border-bottom: 1px solid rgba(107,79,46,0.2); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-muted); font-size: 13px; }
.widget ul li a:hover { color: var(--gold); }

/* Pagination */
.pagination, .nav-links { display: flex; justify-content: center; gap: 6px; padding: 24px 0; }
.page-numbers { display: inline-block; padding: 8px 14px; background: rgba(10,8,4,0.85); border: 1px solid var(--border-gold); color: var(--text-muted); font-size: 13px; transition: all 0.3s; }
.page-numbers.current, .page-numbers:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(180,130,50,0.1); }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: rgba(4,3,1,0.9);
    border-top: 2px solid var(--border-gold);
    padding: 36px 24px 32px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(180,130,50,0.2);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); font-family: var(--font-display); font-size: 10px; text-transform: uppercase; letter-spacing: 2px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 11px; color: var(--text-muted); }

/* Comments */
.comments-area { background: rgba(10,8,4,0.85); border: 1px solid var(--border-gold); padding: 28px; margin-top: 24px; }
.comments-title { font-family: var(--font-display); color: var(--gold-light); font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.comment-list { list-style: none; }
.comment-body { padding: 14px 0; border-bottom: 1px solid rgba(107,79,46,0.3); }
.comment-author { font-weight: 600; color: var(--text-light); }
.comment-content { color: var(--text); margin-top: 8px; }
.comment-respond input[type="text"], .comment-respond input[type="email"], .comment-respond input[type="url"], .comment-respond textarea { width: 100%; padding: 10px 14px; background: rgba(10,8,4,0.8); border: 1px solid var(--border-gold); color: var(--text); font-family: var(--font-body); font-size: 13px; margin-bottom: 10px; }
.comment-respond input:focus, .comment-respond textarea:focus { outline: none; border-color: var(--gold); }
.comment-respond input[type="submit"] { padding: 10px 24px; background: rgba(180,130,50,0.15); border: 1px solid var(--gold); color: var(--gold-light); font-weight: 600; font-size: 13px; cursor: pointer; letter-spacing: 1px; }
.search-form { display: flex; gap: 6px; }
.search-form .search-field { flex: 1; padding: 10px 14px; background: rgba(10,8,4,0.8); border: 1px solid var(--border-gold); color: var(--text); font-size: 13px; }
.search-form .search-submit { padding: 10px 16px; background: rgba(180,130,50,0.15); border: 1px solid var(--gold); color: var(--gold-light); font-weight: 600; cursor: pointer; }

/* 404 */
.error-404 { text-align: center; padding: 100px 20px; }
.error-404 h1 { font-family: var(--font-display); font-size: 80px; color: var(--gold); text-shadow: 0 0 40px rgba(180,130,50,0.3); }
.error-404 p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }

/* WP */
.alignleft { float: left; margin: 0 20px 10px 0; }
.alignright { float: right; margin: 0 0 10px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }
.admin-bar .site-header { top: 32px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .main-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .site-header { height: auto; }
    .header-inner { flex-wrap: wrap; height: auto; padding: 10px 16px; }
    .menu-toggle { display: flex; order: 2; margin-left: auto; }
    .main-navigation { order: 3; width: 100%; display: none; }
    .main-navigation.toggled { display: block; }
    .main-navigation ul { flex-direction: column; padding: 10px 0; }
    .main-navigation ul ul { position: static; box-shadow: none; border: none; padding-left: 16px; }
    .header-actions { order: 2; margin-right: 8px; }
    .hero { padding-bottom: 8vh; }
    .hero-logo { max-width: 320px; }
    .hero-tagline { font-size: 14px; letter-spacing: 3px; }
    .has-sidebar .site-content { flex-direction: column; }
    .has-sidebar .widget-area { width: 100%; }
    .footer-inner { flex-direction: column; text-align: center; }
    .entry-header { padding: 18px 18px 6px; }
    .entry-content, .entry-summary { padding: 12px 18px 22px; }
    .cta-section h2 { font-size: 24px; }
}
@media (max-width: 480px) {
    .hero-logo { max-width: 250px; }
    .hero-tagline { font-size: 12px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 260px; }
    .header-actions .btn-outline { display: none; }
    .news-item-thumb { width: 70px; height: 50px; }
}
