        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f9f9f9 0%, #fff5f5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: #b30000;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #ff6666;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #cc0000;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff3333;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #ffe6e6;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #800000, #b30000);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            font-family: 'Arial Black', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffcccc;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: color 0.3s ease;
        }
        .logo a:hover {
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #ffcccc;
        }
        .breadcrumb a {
            color: #ffcccc;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #990000;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        button {
            background: linear-gradient(90deg, #b30000, #800000);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #cc0000, #990000);
            transform: scale(1.02);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ff9900;
        }
        .intro {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 2rem;
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.01);
        }
        .interview, .data-section, .guide {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed #ffcccc;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .stat-box {
            background: #fff5f5;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border-left: 5px solid #b30000;
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
        }
        .stat-box h4 {
            color: #800000;
            font-size: 1.3rem;
        }
        .stat-box p {
            font-size: 2rem;
            font-weight: bold;
            color: #ff3333;
        }
        .internal-links {
            background: #2c2c2c;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
        }
        .web-link {
            background: #444;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }
        .web-link a {
            color: #ffcccc;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .copyright {
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #ff6666;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .links-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #990000;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 1000;
                padding: 1rem;
                border-radius: 0 0 10px 10px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .links-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .links-container {
                grid-template-columns: 1fr;
            }
            .stat-box p {
                font-size: 1.5rem;
            }
        }
