        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f5f7fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #e62429, #ffde00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            font-weight: 900;
        }
        .logo span {
            color: #ffde00;
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            background: #2d2d3a;
            color: #eee;
        }
        .search-form button {
            background: #e62429;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff2e34;
        }
        nav {
            background-color: #111;
            border-top: 1px solid #333;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .main-nav {
            display: flex;
        }
        .main-nav li {
            position: relative;
        }
        .main-nav a {
            display: block;
            padding: 18px 22px;
            color: #ddd;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s;
        }
        .main-nav a:hover, .main-nav a.active {
            color: #ffde00;
            background-color: #222;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffde00;
            padding: 10px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1a1a2e;
            color: #aaa;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #ffde00;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #0c0c0c;
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 6px solid #e62429;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #1a1a2e;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a2e;
            background: #f9f9ff;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #ffde00;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fff9db;
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .img-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .related-links {
            background: #f0f5ff;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
        }
        .related-links h3 {
            color: #1a1a2e;
            margin-top: 0;
        }
        .related-links ul li {
            margin-bottom: 12px;
        }
        .related-links a {
            color: #e62429;
            font-weight: 600;
        }
        .related-links a:hover {
            text-decoration: underline;
        }
        sidebar {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #1a1a2e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-widget input, .rating-widget select, .comment-widget input, .comment-widget textarea {
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        .comment-widget textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffde00;
        }
        .btn {
            background: #e62429;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            text-align: center;
        }
        .btn:hover {
            background: #ff2e34;
        }
        .btn-block {
            display: block;
            width: 100%;
        }
        .footer-links {
            background: #1a1a2e;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
        }
        @media (max-width: 768px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: #252542;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #2d2d5a;
        }
        .web-link a {
            color: #ffde00;
            font-weight: 600;
            font-size: 1.05rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #0c0c0c;
            color: #aaa;
            padding: 40px 0 30px;
            text-align: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.95rem;
            color: #777;
            border-top: 1px solid #333;
            padding-top: 25px;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-form {
                width: 100%;
                max-width: 500px;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: #111;
                z-index: 999;
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                padding: 18px 25px;
                border-bottom: 1px solid #222;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content, sidebar {
                padding: 25px;
            }
        }
