:root {
            --primary: #0052A5; 
            --secondary: #C60C30; 
            --accent: #FFD100; 
            --dark: #222222;
            --light: #F8F9FA;
            --gray: #6C757D;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --radius: 8px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .header-top {
            background: var(--dark);
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
        .header-top-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .current-time { color: var(--accent); }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 1rem 0;
            text-align: center;
        }
        .my-logo a:hover { opacity: 0.9; }
        .main-header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
            position: relative;
        }
        .nav-desktop {
            display: flex;
            gap: 1.5rem;
        }
        .nav-desktop a {
            padding: 1.2rem 0.5rem;
            font-weight: 600;
            color: var(--dark);
            position: relative;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            color: var(--primary);
        }
        .nav-desktop a:hover::after, .nav-desktop a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav a {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background: var(--light);
            color: var(--primary);
        }
        .search-box {
            display: flex;
            max-width: 300px;
            width: 100%;
        }
        .search-box input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius) 0 0 var(--radius);
            outline: none;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
        }
        .search-box button:hover { background: #003d7a; }
        .breadcrumb {
            max-width: var(--max-width);
            margin: 1rem auto;
            padding: 0 1rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: var(--gray); margin: 0 5px; }
        .container {
            max-width: var(--max-width);
            margin: 2rem auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
        }
        main { background: white; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
        h1 { color: var(--primary); margin-bottom: 1.5rem; font-size: 2.5rem; line-height: 1.2; border-bottom: 3px solid var(--accent); padding-bottom: 0.5rem; }
        h2 { color: var(--secondary); margin: 2rem 0 1rem; font-size: 1.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid #eee; }
        h3 { color: var(--dark); margin: 1.5rem 0 0.8rem; font-size: 1.4rem; }
        h4 { color: var(--gray); margin: 1rem 0 0.5rem; font-size: 1.1rem; }
        p { margin-bottom: 1.2rem; text-align: justify; }
        .lead { font-size: 1.2rem; color: var(--primary); font-weight: 600; margin-bottom: 1.5rem; padding-left: 1rem; border-left: 4px solid var(--accent); }
        .highlight { background: #fff9e6; padding: 1rem; border-left: 4px solid var(--accent); margin: 1.5rem 0; border-radius: 0 var(--radius) var(--radius) 0; }
        .emoji { margin-right: 5px; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: var(--light);
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary);
        }
        .stat-card i { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
        .stat-card h4 { color: var(--primary); margin-bottom: 0.5rem; }
        .feature-img {
            margin: 2rem auto;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .caption { text-align: center; font-style: italic; color: var(--gray); margin-top: 0.5rem; font-size: 0.9rem; }
        .content-links {
            margin: 1.5rem 0;
            padding: 1rem;
            background: var(--light);
            border-radius: var(--radius);
        }
        .content-links h4 { margin-top: 0; }
        .content-links ul { display: flex; flex-wrap: wrap; gap: 1rem; }
        .content-links li a {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            border: 1px solid #ddd;
            display: inline-block;
            font-size: 0.9rem;
        }
        .content-links li a:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .article-section { margin-bottom: 3rem; }
        .interview {
            background: #f0f7ff;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            border-left: 5px solid var(--primary);
        }
        .quote { font-style: italic; color: var(--dark); margin: 1rem 0; padding-left: 1rem; border-left: 3px solid var(--accent); }
        .author { text-align: right; font-weight: 600; color: var(--primary); }
        aside { background: white; padding: 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
        .widget { margin-bottom: 2rem; }
        .widget-title { color: var(--primary); padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent); margin-bottom: 1rem; }
        .event-list li { padding: 0.8rem 0; border-bottom: 1px dashed #ddd; }
        .event-list li:last-child { border-bottom: none; }
        .event-list a { color: var(--dark); display: block; }
        .event-list a:hover { color: var(--primary); }
        .event-date { font-size: 0.9rem; color: var(--secondary); font-weight: 600; }
        .rating-form, .comment-form {
            background: var(--light);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-top: 2rem;
        }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; margin-bottom: 0.3rem; font-weight: 600; }
        .form-control {
            width: 100%;
            padding: 0.7rem;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-size: 1rem;
        }
        textarea.form-control { min-height: 120px; resize: vertical; }
        .stars { display: flex; gap: 5px; margin: 0.5rem 0; }
        .star { font-size: 1.5rem; color: #ddd; cursor: pointer; transition: var(--transition); }
        .star:hover, .star.active { color: var(--accent); }
        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            display: inline-block;
        }
        .btn:hover { background: var(--secondary); }
        .btn-accent { background: var(--accent); color: var(--dark); }
        .btn-accent:hover { background: #e6bf00; }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 1rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo { font-size: 1.8rem; font-weight: 900; color: var(--accent); margin-bottom: 1rem; }
        .footer-links h4 { color: white; margin-bottom: 1rem; }
        .footer-links ul li { margin-bottom: 0.5rem; }
        .footer-links a { color: #ccc; }
        .footer-links a:hover { color: var(--accent); }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: var(--radius);
            margin: 1rem 0;
            border-left: 3px solid var(--accent);
        }
        friend-link a { color: var(--accent); font-weight: 600; }
        friend-link a:hover { text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .mobile-nav.active { display: flex; }
            .search-box { max-width: 100%; margin: 1rem 0; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .content-links ul { flex-direction: column; }
        }
