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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            color: #000000;
            line-height: 1.5;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: #ffffff;
            border-bottom: 1px solid #000000;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
        }

                .logo {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -1px;
            color: #000000;
            text-transform: uppercase;
            flex-shrink: 0;
        }
        
        a.logo {
            line-height: 1 !important;
        }
.nav {
            display: flex;
            gap: 0;
            align-items: center;
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #000000;
            text-decoration: none;
            padding: 14px 20px;
            border-bottom: 4px solid transparent;
            transition: all 0.2s ease;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .nav-link:hover {
            border-bottom-color: #000000;
        }

        .more-menu {
            position: relative;
        }

        .more-btn {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #000000;
            background: none;
            border: none;
            padding: 14px 20px;
            cursor: pointer;
            border-bottom: 4px solid transparent;
            transition: all 0.2s ease;
            letter-spacing: 0.3px;
        }

        .more-btn:hover {
            border-bottom-color: #000000;
        }

        .more-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: #ffffff;
            border: 1px solid #000000;
            min-width: 200px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
        }

        .more-menu:hover .more-dropdown {
            display: block;
        }

        .more-dropdown a {
            display: block;
            padding: 14px 20px;
            color: #000000;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-bottom: 1px solid #e0e0e0;
            transition: background 0.2s;
        }

        .more-dropdown a:last-child {
            border-bottom: none;
        }

        .more-dropdown a:hover {
            background: #f5f5f5;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .search-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #000000;
            transition: opacity 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-btn svg {
            width: 20px;
            height: 20px;
            stroke: #000000;
            stroke-width: 2.5;
            fill: none;
        }

        .search-btn:hover {
            opacity: 0.6;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            padding: 8px;
            color: #000000;
            line-height: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .logo { font-size: 28px; }
            .nav { display: none; }
            .mobile-menu-btn { display: block; }
            .logo { font-size: 28px; }
        }

        /* Main Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            background: #ffffff;
        }

        /* Hero Grid */
        .hero-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2px;
            background: #000000;
        }

        .hero-main {
            position: relative;
            background: #000000;
            min-height: 650px;
            max-height: 650px;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0.85;
            transition: all 0.5s ease;
        }

        .hero-main:hover .hero-img {
            opacity: 0.7;
            transform: scale(1.03);
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 64px 48px;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
        }

        .hero-category {
            display: inline-block;
            background: #dc2626;
            color: #ffffff;
            padding: 8px 16px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .hero-title {
            font-family: 'Inter', sans-serif;
            font-size: 64px;
            font-weight: 800;
            line-height: 1.02;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .hero-excerpt {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
            margin-bottom: 16px;
        }

        .hero-meta {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            font-weight: 500;
        }

        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Hero Side */
        .hero-side {
            display: flex;
            flex-direction: column;
            gap: 2px;
            background: #000000;
        }

        .hero-side-item {
            background: #ffffff;
            padding: 32px;
            cursor: pointer;
            transition: background 0.3s;
            border-left: 4px solid transparent;
        }

        .hero-side-item:hover {
            background: #fafafa;
            border-left-color: #dc2626;
        }

        .side-category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #dc2626;
            margin-bottom: 12px;
        }

        .side-title {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            color: #000000;
            margin-bottom: 8px;
        }

        .side-meta {
            font-size: 12px;
            color: #666666;
        }

        /* Section */
        .section {
            padding: 64px 24px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-bottom: 4px solid #000000;
        }

        .section-title {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .section-link {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #000000;
            text-decoration: none;
            border-bottom: 2px solid #000000;
            padding-bottom: 2px;
            transition: color 0.2s;
        }

        .section-link:hover {
            color: #dc2626;
        }

        /* Grid Cards */
        .grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .article-card {
            background: #ffffff;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid #000000;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }

        .article-card:hover .article-img {
            transform: scale(1.05);
        }

        .article-img-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
            background: #000000;
        }

        .article-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .article-content {
            padding: 24px;
        }

        .article-category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #dc2626;
            margin-bottom: 12px;
        }

        .article-title {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
            color: #000000;
        }

        .article-meta {
            font-size: 12px;
            color: #666666;
            display: flex;
            gap: 12px;
        }

        /* Large Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .feature-card {
            background: #ffffff;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            border: 1px solid #000000;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }

        .feature-card:hover .feature-img {
            transform: scale(1.03);
        }

        .feature-img-wrapper {
            width: 100%;
            height: 400px;
            overflow: hidden;
            background: #000000;
        }

        .feature-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .feature-content {
            padding: 40px;
        }

        .feature-category {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #dc2626;
            margin-bottom: 16px;
        }

        .feature-title {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #000000;
            letter-spacing: -0.5px;
        }

        .feature-excerpt {
            font-size: 16px;
            line-height: 1.6;
            color: #333333;
            margin-bottom: 16px;
        }

        .feature-author {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #000000;
        }

        .feature-author-img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
        }

        .feature-author-info {
            flex: 1;
        }

        .feature-author-name {
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .feature-author-title {
            font-size: 12px;
            color: #666666;
        }

        /* Footer */
        footer {
            background: #000000;
            color: rgba(255,255,255,0.7);
            padding: 64px 24px 32px;
        }

        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .footer-brand {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .footer-tagline {
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-section h4 {
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-section { grid-template-columns: 1fr; }
            .grid { grid-template-columns: repeat(2, 1fr); }
            .feature-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            /* Hero Section */
            .hero-section { grid-template-columns: 1fr !important; gap: 0 !important; }
            .hero-main { min-height: 320px !important; }
            .hero-overlay { padding: 16px !important; display: flex !important; flex-direction: column !important; justify-content: flex-end !important; }
            .hero-category { font-size: 9px !important; margin-bottom: 10px !important; padding: 3px 10px !important; width: fit-content !important; }
            .hero-title { font-size: 24px !important; letter-spacing: -0.5px !important; line-height: 1.15 !important; margin-bottom: 0 !important; }
            .hero-excerpt { display: none !important; }
            .hero-meta { display: none !important; }
            
            /* Hero Side Cards */
            .hero-side { display: none !important; }
            
            /* Grids */
            .grid { grid-template-columns: 1fr !important; gap: 20px !important; }
            .grid-3 { grid-template-columns: 1fr !important; gap: 20px !important; }
            
            /* Sections */
            .section { padding: 32px 16px !important; }
            .section-header { flex-direction: column; align-items: flex-start !important; gap: 12px !important; margin-bottom: 24px !important; border-bottom: none !important; padding-bottom: 8px !important; }
            .section-title { font-size: 28px !important; }
            .section-link { font-size: 13px !important; }
            
            /* Article Cards */
            .article-card { margin-bottom: 20px !important; }
            .article-img-wrapper { height: 200px !important; }
            .article-content { padding: 16px !important; }
            .article-title { font-size: 17px !important; line-height: 1.3 !important; }
            .article-category { font-size: 10px !important; }
            .article-meta { font-size: 12px !important; }
            
            /* Feature Grid / Trends Section */
            .trends-section { padding: 40px 16px !important; }
            .trends-container { padding: 0 16px 32px 16px !important; border: none !important; }
            .feature-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
            .feature-card { display: block !important; background: #ffffff !important; border: 1px solid #e5e5e5 !important; }
            .feature-img-wrapper { height: 200px !important; margin-bottom: 0 !important; }
            .feature-content { padding: 16px !important; }
            .feature-title { font-size: 18px !important; line-height: 1.3 !important; }
            .feature-excerpt { font-size: 14px !important; line-height: 1.5 !important; }
            .feature-category { font-size: 10px !important; margin-bottom: 8px !important; }
            .feature-author { margin-top: 16px !important; gap: 12px !important; padding-top: 16px !important; border-top: 1px solid #e5e5e5 !important; }
            .feature-author-img { width: 40px !important; height: 40px !important; }
            .feature-author-name { font-size: 13px !important; }
            .feature-author-title { font-size: 11px !important; }
            
            /* Side Cards */
            .side-card { display: flex !important; flex-direction: row !important; gap: 12px !important; padding: 12px 0 !important; }
            .side-img { width: 80px !important; min-width: 80px !important; height: 80px !important; }
            .side-content { flex: 1 !important; }
            .side-title { font-size: 14px !important; line-height: 1.3 !important; }
            .side-category { font-size: 10px !important; }
            .side-meta { font-size: 11px !important; }
            
            /* Footer */
            .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
            .footer-brand { font-size: 28px !important; }
            .footer-tagline { font-size: 13px !important; }
            
            /* Opinion Section */
            .section[style*="background: #000000"] { padding: 40px 16px !important; }
            .section[style*="background: #000000"] .section-header { border-bottom: none !important; padding-bottom: 8px !important; margin-bottom: 16px !important; }
            .opinion-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
            .opinion-main { padding: 20px !important; }
            .opinion-title { font-size: 20px !important; line-height: 1.25 !important; margin-bottom: 12px !important; }
            .opinion-excerpt { font-size: 14px !important; line-height: 1.5 !important; margin-bottom: 16px !important; }
            .opinion-author { padding-top: 16px !important; gap: 12px !important; }
            .opinion-author img { width: 48px !important; height: 48px !important; }
            .opinion-author div div:first-child { font-size: 13px !important; }
            .opinion-author div div:last-child { font-size: 11px !important; }
            .opinion-side { gap: 12px !important; }
            .opinion-card { padding: 16px !important; }
            .opinion-card-title { font-size: 15px !important; line-height: 1.35 !important; margin-bottom: 6px !important; }
            .opinion-card div { font-size: 11px !important; }
            
            /* Regional Focus Section */
            .section[style*="background: #fafafa"] { padding: 40px 16px !important; }
            .regional-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
            .regional-column { padding: 20px !important; }
            .regional-header { font-size: 15px !important; margin-bottom: 16px !important; padding-bottom: 8px !important; }
            .regional-column > div { margin-bottom: 16px !important; gap: 12px !important; }
            .regional-column > div:last-child { margin-bottom: 0 !important; }
            .regional-column img { width: 70px !important; height: 52px !important; }
            .regional-column h4 { font-size: 15px !important; line-height: 1.3 !important; margin-bottom: 6px !important; }
            .regional-column > div > div > div { font-size: 11px !important; }
        }

    