:root {
            --primary: #cc0000;
            --secondary: #111111;
            --accent: #ffcc00;
            --text-light: #f5f5f5;
            --text-dim: #b0b0b0;
            --bg-dark: #1a1a1a;
            --bg-card: #2a2a2a;
            --spacing-unit: 1rem;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--bg-dark);
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: rgba(17, 17, 17, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo span {
            color: var(--primary);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem;
            border-radius: var(--border-radius);
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--primary);
            color: white;
            text-decoration: none;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--secondary);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 0.5rem;
            color: var(--text-dim);
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 1rem;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--accent);
            text-shadow: 2px 2px 4px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background-color: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article-section {
            margin-bottom: 3rem;
        }
        .article-section h2 {
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        .article-section h3 {
            color: var(--accent);
            margin: 1.5rem 0 1rem;
            font-size: 1.6rem;
        }
        .article-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-section emoji {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .feature-img {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border: 3px solid var(--primary);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .widget h3 {
            color: var(--accent);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid var(--primary);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background: var(--secondary);
            color: var(--text-light);
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #ff0000;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars .star {
            color: var(--text-dim);
        }
        .stars .star.active,
        .stars .star:hover {
            color: var(--accent);
        }
        .rating-widget input, .rating-widget textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            background: var(--secondary);
            border: 1px solid #444;
            border-radius: var(--border-radius);
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        .rating-widget button, .comment-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-widget button:hover, .comment-form button:hover {
            background-color: #ff0000;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background-color: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent);
        }
        .footer-links {
            background-color: var(--secondary);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background-color: var(--bg-card);
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            border: 1px solid #444;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--accent);
            background-color: rgba(255, 204, 0, 0.05);
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .site-footer {
            background-color: var(--secondary);
            text-align: center;
            padding: 2rem;
            border-top: 1px solid #444;
        }
        .copyright {
            color: var(--text-dim);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--secondary);
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .mobile-toggle {
                display: block;
            }
            .content-wrapper {
                gap: 2rem;
            }
            .main-article {
                padding: 1.5rem;
            }
        }
