        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a14;
            --primary-yellow: #f5c518;
            --primary-gray: #1a1a2e;
            --accent-blue: #2d7d9a;
            --text-light: #f0f0f0;
            --text-muted: #aaaaaa;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
            max-width: 100vw;
        }
        a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(245, 197, 24, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .p-2 { padding: 2rem; }
        .highlight {
            color: var(--primary-yellow);
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-yellow), #d4a017);
            color: var(--primary-dark);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(245, 197, 24, 0.3);
            color: #000;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-yellow);
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-yellow);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 15px rgba(245, 197, 24, 0.5);
            position: relative;
        }
        .my-logo::after {
            content: '™';
            font-size: 1rem;
            vertical-align: super;
            margin-left: 5px;
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 20px rgba(245, 197, 24, 0.9);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-yellow);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 12px;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: calc(100% - 24px);
        }
        .breadcrumb {
            background-color: var(--primary-gray);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-muted);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1635805737707-575885ab0820?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 10px #000;
            color: var(--primary-yellow);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }
        .search-bar {
            max-width: 600px;
            margin: 3rem auto;
            background: var(--primary-gray);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .search-bar form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .search-bar input {
            flex: 1;
            min-width: 200px;
            padding: 15px;
            border-radius: 50px;
            border: 2px solid var(--accent-blue);
            background: #111122;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-bar button {
            padding: 15px 30px;
            border-radius: 50px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--primary-gray);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .sidebar {
            background: var(--primary-gray);
            border-radius: 20px;
            padding: 1.5rem;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: var(--primary-yellow);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 3rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid var(--accent-blue); padding-left: 15px; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: var(--accent-blue); }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-muted);
            font-style: italic;
            border-left: 4px solid var(--primary-yellow);
            padding-left: 1rem;
            margin-bottom: 2rem;
        }
        .content-img {
            margin: 2rem auto;
            border: 5px solid #000;
            box-shadow: 0 15px 35px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .content-img:hover {
            transform: scale(1.02);
        }
        blockquote {
            background: rgba(45, 125, 154, 0.1);
            border-left: 5px solid var(--accent-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--primary-yellow), transparent);
            margin: 3rem 0;
        }
        .widget {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #333350;
        }
        .widget:last-child {
            border-bottom: none;
        }
        .widget-title {
            color: var(--accent-blue);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--primary-yellow);
        }
        .rating-widget form,
        .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: var(--primary-yellow);
        }
        form textarea, form input:not([type="submit"]) {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #333350;
            background: #0f0f1a;
            color: var(--text-light);
            font-size: 1rem;
        }
        form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .site-footer {
            background-color: #05050a;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid var(--primary-yellow);
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background: var(--primary-gray);
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 10px;
            border-left: 4px solid var(--accent-blue);
            transition: var(--transition);
        }
        friend-link:hover {
            background: #22223a;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333350;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                max-width: 300px;
                background: var(--primary-dark);
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.4s ease;
                border-left: 2px solid var(--primary-yellow);
                z-index: 999;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .article-content {
                padding: 1.5rem;
            }
        }
        @media print {
            .site-header, .search-bar, .sidebar, .site-footer, .breadcrumb, .hamburger {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
