:root {
    /* Turkish Red & Paraguayan Blue Fusion - Based on CapaTurk Design */
    --turkey-red: #c41e3a;
    --turkey-white: #ffffff;
    --paraguay-blue: #0038a8;
    --paraguay-red: #d52b1e;

    /* Professional Palette */
    --primary-dark: #1a1f2e;
    --primary-blue: #003875;
    --accent-gold: #fdb913;
    --accent-green: #009739;

    /* Text Hierarchy */
    --text-primary: #1a1f2e;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-inverse: #ffffff;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;

    /* Shadows - McKinsey Style */
    --shadow-xs: 0 0 0 1px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Animations */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Flag Banner */
.flag-banner {
    background: linear-gradient(90deg, var(--turkey-red) 50%, var(--paraguay-blue) 50%);
    height: 4px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: var(--bg-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.market-info {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
}

.market-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.up { color: var(--accent-green); }
.down { color: var(--paraguay-red); }

.header-main {
    padding: 1.25rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--turkey-red) 0%, var(--paraguay-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
}

.logo-paragu {
    color: var(--turkey-red);
}

.logo-ai {
    color: var(--accent-gold);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.header-search .search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
}

.header-search .search-input::placeholder {
    color: var(--text-light);
}

.header-search .search-btn {
    background: linear-gradient(135deg, var(--turkey-red) 0%, var(--paraguay-blue) 100%);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: white;
}

.header-search .search-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Language Selector */
.language-selector {
    display: flex;
    background: var(--bg-light);
    border-radius: 25px;
    padding: 0.25rem;
    border: 1px solid var(--border-light);
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn.active {
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav-container {
    background: var(--primary-dark);
    color: white;
}

.nav-scroll,
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-scroll::-webkit-scrollbar {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item,
.nav-link {
    display: block;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    white-space: nowrap;
    transition: var(--transition-base);
    position: relative;
}

.nav-item::after,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

.nav-item:hover::after,
.nav-link:hover::after,
.nav-item.active::after,
.nav-link.active::after {
    width: 80%;
}

.nav-item:hover,
.nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 50%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 56, 168, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Stats Grid */
.stats-grid,
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--turkey-red), var(--paraguay-blue));
}

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

.stat-value,
.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--turkey-red), var(--paraguay-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    padding: 3rem 0;
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
}

.content-primary {
    min-width: 0;
}

/* ============================================
   FEATURED ARTICLE
   ============================================ */

.featured-article,
.featured {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.featured-header {
    background: linear-gradient(135deg, var(--turkey-red) 0%, var(--paraguay-blue) 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.featured-badge {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-content {
    padding: 1.5rem;
}

.featured-title {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--turkey-red) 0%, var(--paraguay-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* ============================================
   ARTICLES GRID
   ============================================ */

.articles-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.article-card,
.news-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.article-card:hover,
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.article-image,
.news-image {
    width: 100%;
    height: 180px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.article-image img,
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category,
.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.article-content,
.news-content {
    padding: 1.25rem;
}

.article-title,
.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-excerpt,
.news-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-meta,
.news-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-light);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ============================================
   TRENDING / OPPORTUNITIES
   ============================================ */

.trending-section,
.opportunities {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(0, 56, 168, 0.05) 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.trending-header,
.opp-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.trending-icon,
.opp-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.trending-title,
.opp-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.trending-list,
.opp-list {
    display: grid;
    gap: 1rem;
}

.trending-item,
.opp-item {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition-base);
    text-decoration: none;
    display: block;
}

.trending-item:hover,
.opp-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.opp-item-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.opp-item-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trending-content {
    flex: 1;
    min-width: 0;
}

.trending-headline {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.trending-meta {
    font-size: 0.875rem;
    color: var(--text-light);
}

.trending-number {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--turkey-red);
    flex-shrink: 0;
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-gold);
}

/* Exchange Rates */
.rates-table {
    width: 100%;
    font-size: 0.9375rem;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.rate-pair {
    font-weight: 600;
    color: var(--text-primary);
}

.rate-value {
    color: var(--text-secondary);
}

/* Events */
.event-list {
    display: grid;
    gap: 1rem;
}

.event-item {
    display: grid;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

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

.event-date {
    font-size: 0.8125rem;
    color: var(--turkey-red);
    font-weight: 700;
    text-transform: uppercase;
}

.event-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.event-location {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
    background: linear-gradient(135deg, var(--turkey-red) 0%, var(--paraguay-blue) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle,
.newsletter-desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.newsletter-form {
    display: grid;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.9375rem;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.2);
}

.newsletter-btn {
    padding: 0.75rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-btn:hover {
    background: white;
    transform: translateY(-2px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.news-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.view-all {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-base);
}

.view-all:hover {
    transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description,
.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-flags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.flag {
    width: 40px;
    height: 25px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-base);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1f3a 100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    padding: 1rem 0;
}

.mobile-nav-item {
    display: block;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-gold);
}

.mobile-nav-item.active {
    background: rgba(253, 185, 19, 0.1);
    border-left-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Mobile Search Bar */
.mobile-search-bar {
    display: none;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-light);
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
}

.mobile-search-input::placeholder {
    color: var(--text-light);
}

.mobile-search-btn {
    background: linear-gradient(135deg, var(--turkey-red) 0%, var(--paraguay-blue) 100%);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
}

/* ============================================
   SEARCH RESULTS
   ============================================ */

.search-result-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.search-result-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.result-thumbnail {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-item:hover .result-thumbnail img {
    transform: scale(1.05);
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.result-section {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-section.politics { background: #e3f2fd; color: #1976d2; }
.result-section.business { background: #f3e5f5; color: #7b1fa2; }
.result-section.technology { background: #e8f5e9; color: #388e3c; }
.result-section.international { background: #fff3e0; color: #f57c00; }
.result-section.culture { background: #fce4ec; color: #c2185b; }
.result-section.sports { background: #e0f2f1; color: #00796b; }

.result-date {
    color: var(--text-light);
}

.result-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.result-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.result-title a:hover {
    color: var(--primary-blue);
}

.result-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
    font-size: 0.9375rem;
}

.result-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    font-size: 0.875rem;
    color: var(--text-light);
}

.result-author {
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .main-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-search,
    .desktop-search {
        display: none;
    }

    .mobile-search-bar {
        display: block;
    }

    .language-selector span {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        display: none;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .stats-grid,
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .articles-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .search-result-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .result-thumbnail {
        width: 100%;
        height: 200px;
    }

    .result-title {
        font-size: 1.125rem;
    }

    .result-excerpt {
        font-size: 0.875rem;
    }

    .trending-item {
        padding: 0.75rem;
    }
}

@media (min-width: 769px) {
    .mobile-search-bar,
    .mobile-nav-overlay {
        display: none;
    }

    .header-content {
        padding: 0;
    }

    .main-content {
        padding: 3rem 0;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .footer-top {
        grid-template-columns: 2fr 3fr;
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-image {
        height: 400px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header-top,
    .nav-container,
    .sidebar,
    .newsletter,
    .footer,
    .header,
    .mobile-menu-btn,
    .mobile-search-bar {
        display: none;
    }

    body {
        font-size: 12pt;
        color: black;
        background: white;
    }

    .article-card,
    .news-card {
        page-break-inside: avoid;
    }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Author Avatar */
.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turkey-red), var(--paraguay-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}
