:root {
            --primary-blue: #003366;
            --secondary-gold: #FFD700;
            --accent-green: #00843D;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --gray-border: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fff;
            color: var(--dark-text);
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-green);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary-gold);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: var(--secondary-gold);
            color: var(--primary-blue);
            border: none;
            padding: 12px 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ffed4e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 5px;
            margin-top: 15px;
        }
        nav ul li a {
            color: white;
            padding: 10px 20px;
            display: block;
            border-radius: 8px;
            font-weight: 600;
            white-space: nowrap;
        }
        nav ul li a:hover, nav ul li a.active {
            background: var(--secondary-gold);
            color: var(--primary-blue);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: var(--primary-blue);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        .article-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-blue);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--accent-green);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 10px;
        }
        h3 {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #495057;
            background: var(--light-bg);
            padding: 20px;
            border-left: 5px solid var(--secondary-gold);
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffd70030 0%, #ffd70010 100%);
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            border: 1px dashed var(--secondary-gold);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-top: 5px solid var(--primary-blue);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: var(--accent-green);
            margin: 10px 0;
        }
        .image-wrap {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrap img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .image-wrap figcaption {
            font-style: italic;
            color: #6c757d;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        table th, table td {
            padding: 15px;
            text-align: center;
            border: 1px solid var(--gray-border);
        }
        table th {
            background: var(--primary-blue);
            color: white;
            font-weight: 600;
        }
        table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        table tr:hover {
            background-color: #e9f7ef;
        }
        aside {
            background: var(--light-bg);
            padding: 25px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--primary-blue);
            padding-bottom: 10px;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--secondary-gold);
        }
        .link-list a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: white;
            border-radius: 8px;
            border-left: 4px solid var(--accent-green);
            transition: all 0.3s;
        }
        .link-list a:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }
        .rating-widget {
            text-align: center;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--secondary-gold);
        }
        .interactive-box {
            background: linear-gradient(135deg, #003366, #00509E);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 35px 0;
            text-align: center;
        }
        .interactive-box h3 {
            color: white;
            margin-top: 0;
        }
        .comment-form, .score-form {
            display: grid;
            gap: 15px;
            margin-top: 20px;
        }
        .comment-form input, .comment-form textarea,
        .score-form input, .score-form select {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--gray-border);
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: var(--secondary-gold);
            color: var(--primary-blue);
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn:hover {
            background: #ffed4e;
            box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
        }
        .btn-green {
            background: var(--accent-green);
            color: white;
        }
        .btn-green:hover {
            background: #009a4c;
        }
        footer {
            background: #002244;
            color: #e9ecef;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .footer-logo span {
            color: var(--secondary-gold);
        }
        friend-link {
            display: block;
            margin-bottom: 15px;
        }
        friend-link a {
            color: #adb5bd;
        }
        friend-link a:hover {
            color: var(--secondary-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .search-form {
                max-width: 100%;
                margin: 10px 0;
                order: 3;
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            nav ul {
                flex-direction: column;
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: 20px;
            }
            .header-top {
                padding-right: 60px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
