        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #e53935;
            --secondary-color: #1a237e;
            --accent-color: #ffb300;
            --dark-bg: #121212;
            --light-bg: #f5f5f5;
            --text-light: #ffffff;
            --text-dark: #212121;
            --gray-border: #424242;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            border-left: 6px solid var(--primary-color);
            padding-left: 1.5rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary-color);
        }
        .logo span {
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .nav-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 1rem;
            display: none;
            flex-direction: column;
            gap: 1rem;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0f0f0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--gray-border);
        }
        main {
            padding: 2rem 0;
            background-color: white;
            box-shadow: 0 0 30px rgba(0,0,0,0.05);
            min-height: 200vh;
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .search-section {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--secondary-color);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #c62828;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2.5rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1.5rem;
            margin-bottom: 2.5rem;
        }
        .content-highlight {
            background-color: #e3f2fd;
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        .internal-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-color);
            transition: var(--transition);
        }
        .internal-link:hover {
            color: #b71c1c;
            border-bottom-style: solid;
        }
        .interactive-section {
            background-color: #f9f9f9;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 4rem 0;
            border: 1px solid #e0e0e0;
        }
        .rating-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ffb300;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-form {
            display: grid;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-btn:hover {
            background-color: #0d1b5e;
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(13, 27, 94, 0.2);
        }
        .footer-links {
            background-color: #263238;
            padding: 3rem 0;
        }
        .web-link {
            display: inline-block;
            background-color: #37474f;
            color: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-border);
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        @media (max-width: 992px) {
            .container {
                padding: 0 1rem;
            }
            .article-content {
                padding: 0 0.5rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            h1 {
                padding-left: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 1rem;
            }
            .search-btn {
                border-radius: 50px;
                padding: 1rem;
            }
            .featured-image {
                max-height: 300px;
            }
            .rating-box {
                padding: 1.5rem;
            }
            .stars {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .web-link {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .text-bold {
            font-weight: 700;
            color: var(--primary-color);
        }
        .text-italic {
            font-style: italic;
            color: #555;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .divider {
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            margin: 3rem 0;
            border: none;
        }
