        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #c5a15c;
            --primary-dark: #9e7c3f;
            --secondary: #1a1a2e;
            --accent: #0f3460;
            --light: #f5f5f5;
            --dark: #0d0d15;
            --gray: #2d2d44;
            --success: #4caf50;
            --warning: #ff9800;
            --error: #f44336;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-max: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--light);
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-top: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--light);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd166;
            text-decoration: underline;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #ccc;
        }
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: rgba(13, 13, 21, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffd166;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            font-weight: 600;
        }
        .nav-desktop a:hover {
            background: var(--accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--dark);
            padding: 1.5rem;
            border-top: 1px solid var(--gray);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid var(--gray);
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background: rgba(45, 45, 68, 0.3);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb span {
            color: var(--primary);
            margin: 0 0.5rem;
        }
        .hero {
            padding: 3rem 1.5rem;
            text-align: center;
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(13, 13, 21, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-bottom: 3rem;
        }
        main {
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 26, 46, 0.7);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        aside {
            background: rgba(26, 26, 46, 0.7);
            padding: 2rem;
            border-radius: var(--border-radius);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .search-box {
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid var(--gray);
            border-radius: var(--border-radius);
            background: var(--dark);
            color: var(--light);
            font-size: 1rem;
        }
        .search-box button {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: var(--primary);
        }
        input, textarea, select {
            padding: 1rem;
            border: 2px solid var(--gray);
            border-radius: var(--border-radius);
            background: var(--dark);
            color: var(--light);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(197, 161, 92, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--dark);
            border: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
        }
        .btn:hover {
            background: linear-gradient(135deg, #d4b15f 0%, #b28a3f 100%);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            text-decoration: none;
        }
        .rating-system {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
        }
        .star {
            font-size: 1.8rem;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: var(--dark);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        th, td {
            padding: 1.2rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--gray);
        }
        th {
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
        }
        tr:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .info-box {
            background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(26, 26, 46, 0.7) 100%);
            border-left: 5px solid var(--primary);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .info-box h3 {
            margin-top: 0;
            color: #ffd166;
        }
        .article-img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 3px solid var(--primary);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(26, 26, 46, 0.7);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(197, 161, 92, 0.1);
            border: 1px solid var(--primary);
        }
        footer {
            background: var(--dark);
            padding: 3rem 1.5rem 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid var(--primary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--gray);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight { background: rgba(197, 161, 92, 0.2); padding: 0.2rem 0.5rem; border-radius: 4px; }
