        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a1a;
            --secondary-dark: #2d2d2d;
            --accent-orange: #e67e22;
            --accent-red: #c0392b;
            --accent-blue: #3498db;
            --text-light: #ecf0f1;
            --text-gray: #bdc3c7;
            --border-color: #444;
            --section-padding: clamp(2rem, 5vw, 4rem);
            --container-width: min(1200px, 90%);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: var(--accent-orange);
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }
        h1 {
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            border-left: 5px solid var(--accent-red);
            padding-left: 1rem;
            margin-top: 1rem;
        }
        h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent-blue);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: var(--accent-orange);
            text-decoration: underline;
        }
        strong {
            color: var(--accent-orange);
            font-weight: 600;
        }
        em {
            color: var(--text-gray);
            font-style: italic;
        }
        .container {
            width: var(--container-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-red);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent-orange);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-orange);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--secondary-dark);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--text-gray);
        }
        .search-section {
            background: linear-gradient(135deg, var(--secondary-dark) 0%, #1a1a1a 100%);
            padding: 2rem 0;
            margin-bottom: 2rem;
            border-radius: 10px;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 1rem 3rem 1rem 1.5rem;
            border-radius: 50px;
            border: 2px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-box button {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--accent-orange);
            font-size: 1.2rem;
            cursor: pointer;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--secondary-dark);
            padding: var(--section-padding);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--accent-orange);
        }
        .info-box {
            background: linear-gradient(to right, #2c3e50, #4a6491);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid var(--accent-blue);
        }
        .warning-box {
            background: linear-gradient(to right, #7d3c2a, #a0402b);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid var(--accent-red);
        }
        aside {
            background-color: var(--secondary-dark);
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.5rem;
            color: #f1c40f;
            margin: 1rem 0;
        }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }
        .rating-form button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to right, var(--accent-orange), var(--accent-red));
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .rating-form button:hover {
            transform: translateY(-3px);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .quick-links li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--accent-orange);
            font-size: 0.8rem;
        }
        .comment-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--border-color);
        }
        .comment-form {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 3rem;
        }
        .comment-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-gray);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: var(--secondary-dark);
            border-radius: 10px;
        }
        .web-link {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 126, 34, 0.1));
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(231, 126, 34, 0.2));
        }
        footer {
            background-color: #111;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--accent-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeIn 0.8s ease-out;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(230, 126, 34, 0.1), transparent);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--accent-orange);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-orange);
            display: block;
            text-shadow: 0 0 10px rgba(230, 126, 34, 0.3);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: rgba(255, 255, 255, 0.05);
        }
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        th {
            background-color: rgba(230, 126, 34, 0.2);
            color: var(--accent-orange);
            font-weight: 600;
        }
        tr:hover {
            background-color: rgba(255, 255, 255, 0.03);
        }
