        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a14;
            --secondary-dark: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-blue: #0066cc;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --danger-red: #cc3300;
            --success-green: #33aa66;
            --border-radius: 8px;
            --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;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .text-gold {
            color: var(--accent-gold);
        }
        .text-blue {
            color: var(--accent-blue);
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--accent-blue), #004488);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        .btn:hover {
            background: linear-gradient(135deg, var(--accent-gold), #b8941f);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            text-decoration: none;
        }
        header {
            background-color: var(--secondary-dark);
            border-bottom: 3px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px #000, 0 0 10px rgba(212, 175, 55, 0.5);
            letter-spacing: 2px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: white;
            text-shadow: 2px 2px 6px #000, 0 0 15px rgba(212, 175, 55, 0.8);
            text-decoration: none;
        }
        .my-logo span {
            color: var(--accent-blue);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(26, 26, 46, 0.8);
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:last-child {
            color: var(--accent-gold);
            pointer-events: none;
        }
        .breadcrumb i {
            margin: 0 10px;
            color: #555;
        }
        .hero {
            background: linear-gradient(rgba(10,10,20,0.85), rgba(10,10,20,0.9)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 80px 20px;
            text-align: center;
            border-bottom: 5px solid var(--accent-gold);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px black;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-gray);
        }
        .search-section {
            background-color: var(--secondary-dark);
            padding: 30px 20px;
            border-bottom: 1px solid #333;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
            background-color: #0f0f1a;
            color: var(--text-light);
        }
        .search-btn {
            padding: 0 30px;
            background-color: var(--accent-blue);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--accent-gold);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        article {
            background-color: var(--secondary-dark);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h1, h2, h3, h4 {
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            color: var(--accent-gold);
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        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); }
        article p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 2px solid #333;
            margin-bottom: 40px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 8px;
            color: var(--accent-gold);
        }
        .featured-image {
            margin: 40px 0;
            position: relative;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .pull-quote {
            border-left: 5px solid var(--accent-gold);
            padding: 25px;
            margin: 40px 0;
            background-color: rgba(212, 175, 55, 0.05);
            font-size: 1.3rem;
            font-style: italic;
            color: var(--text-light);
        }
        .pull-quote::before {
            content: "“";
            font-size: 4rem;
            color: var(--accent-gold);
            line-height: 0;
            margin-right: 15px;
            vertical-align: -0.4em;
        }
        aside {
            background-color: var(--secondary-dark);
            padding: 30px;
            border-radius: var(--border-radius);
            align-self: start;
            position: sticky;
            top: 140px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-blue);
            margin-bottom: 20px;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #444;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form select, .rating-form textarea {
            padding: 12px;
            border-radius: var(--border-radius);
            border: 1px solid #555;
            background-color: #0f0f1a;
            color: var(--text-light);
            font-size: 1rem;
        }
        .rating-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comments-section {
            margin-top: 60px;
            border-top: 2px solid #333;
            padding-top: 40px;
        }
        .comment {
            background-color: rgba(15, 15, 26, 0.7);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
            border-left: 4px solid var(--accent-blue);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .comment-author {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .comment-form {
            background-color: var(--secondary-dark);
            padding: 30px;
            border-radius: var(--border-radius);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-light);
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 14px;
            border-radius: var(--border-radius);
            border: 1px solid #555;
            background-color: #0f0f1a;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
        }
        footer {
            background-color: #05050a;
            border-top: 5px solid var(--accent-gold);
            padding: 60px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-gray);
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(212, 175, 55, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border-left: 5px solid var(--accent-gold);
        }
        friend-link a {
            font-weight: bold;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--accent-gold);
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
                top: auto;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary-dark);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
                border-top: 1px solid #333;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 15px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            article, aside {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
            }
            .search-input {
                border-radius: var(--border-radius) var(--border-radius) 0 0;
            }
            .search-btn {
                border-radius: 0 0 var(--border-radius) var(--border-radius);
                padding: 15px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 { font-size: 1.6rem; }
            .btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
        }
