        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a0f;
            --secondary-dark: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            background-image: linear-gradient(rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.95)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #d4af37, #8b0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 5px 0;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 10px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--accent-gold);
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary-dark);
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .mobile-nav.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: var(--accent-gold);
            text-align: center;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #e6b422;
            padding-left: 15px;
            border-left: 5px solid var(--accent-red);
        }
        h3 {
            font-size: 1.7rem;
            margin: 30px 0 15px;
            color: #f0c96d;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: #d1b580;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #fff;
            background: rgba(139, 0, 0, 0.1);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-red);
            margin-bottom: 40px;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 20px;
            border-radius: 8px;
            border: 1px dashed var(--accent-gold);
            margin: 30px 0;
        }
        blockquote {
            font-style: italic;
            font-size: 1.3rem;
            padding: 25px 40px;
            margin: 30px 0;
            background: rgba(26, 26, 46, 0.8);
            border-left: 5px solid var(--accent-gold);
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            margin: 40px auto;
            max-width: 800px;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            padding: 10px;
            background: rgba(0,0,0,0.5);
        }
        aside {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 30px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            margin-top: 0;
            color: var(--accent-gold);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-red);
            font-size: 1.5rem;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255,255,255,0.08);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--accent-gold), #b8860b);
            color: var(--primary-dark);
            border: none;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background: linear-gradient(135deg, #ffd700, #daa520);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(212, 175, 55, 0.4);
        }
        .rating-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
        }
        .stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: center;
            margin: 15px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            padding: 5px;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: var(--accent-gold);
        }
        .comment {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent-red);
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 5px;
        }
        .comment-date {
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .comment-text {
            margin-top: 10px;
        }
        footer {
            background-color: var(--secondary-dark);
            border-top: 2px solid var(--accent-gold);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 12px 15px;
            background: rgba(212, 175, 55, 0.1);
            margin-bottom: 10px;
            border-radius: 5px;
            border: 1px solid transparent;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article, aside {
                padding: 25px;
            }
            .header-container, .container {
                padding: 0 15px;
            }
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 40px; }
        .mb-4 { margin-bottom: 40px; }
        .last-updated {
            font-style: italic;
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
