        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0e0;
            line-height: 1.7;
            background-image: linear-gradient(rgba(15, 15, 30, 0.95), rgba(5, 5, 15, 0.98)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%2305050f"/><path d="M0,50 L100,50 M50,0 L50,100" stroke="%231a1a33" stroke-width="1"/></svg>');
        }
        h1, h2, h3, h4 {
            color: #c9aa71;
            font-family: 'Cinzel', 'Times New Roman', serif;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 3px solid #8b4513;
            padding-bottom: 1rem;
            margin-top: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.7);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #8b0000;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #d4b483;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #b8860b;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        a {
            color: #daa520;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        strong {
            color: #f5f5f5;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #b0b0b0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            margin: 1rem 0 2rem;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(20, 20, 30, 0.95);
            border-bottom: 2px solid #5d0f0f;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Black Ops One', cursive;
            font-size: 2.5rem;
            color: #c9aa71;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 #8b0000, 4px 4px 5px rgba(0,0,0,0.8);
            transition: all 0.3s;
        }
        .my-logo:hover {
            text-shadow: 2px 2px 0 #b22222, 0 0 15px rgba(255, 215, 0, 0.7);
            transform: scale(1.02);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #c9aa71;
            cursor: pointer;
            background: none;
            border: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #ddd;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 4px;
            transition: background-color 0.3s, color 0.3s;
        }
        nav a:hover, nav a.active {
            background-color: #5d0f0f;
            color: #ffd700;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #daa520;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #666;
        }
        .search-form {
            margin: 30px auto;
            max-width: 600px;
            display: flex;
            border: 2px solid #5d0f0f;
            border-radius: 50px;
            overflow: hidden;
            background: rgba(30, 30, 40, 0.8);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-form input:focus {
            outline: none;
        }
        .search-form button {
            background: #5d0f0f;
            color: #ffd700;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #8b0000;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(25, 25, 35, 0.7);
            border-radius: 10px;
            padding: 30px;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        aside {
            background: rgba(20, 20, 30, 0.8);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #444;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            border-bottom: 2px solid #8b4513;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #444;
        }
        .link-list a {
            display: block;
            padding: 8px 10px;
            border-radius: 5px;
            transition: background 0.3s, padding-left 0.3s;
        }
        .link-list a:hover {
            background: rgba(93, 15, 15, 0.3);
            padding-left: 20px;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
            border: 3px solid #5d0f0f;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            padding: 15px;
            background: rgba(30, 30, 40, 0.9);
            font-style: italic;
            color: #aaa;
            font-size: 0.95rem;
        }
        .user-interaction {
            background: rgba(30, 30, 40, 0.8);
            border-radius: 10px;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid #444;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #c9aa71;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(40, 40, 50, 0.8);
            border: 1px solid #555;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: #daa520;
            box-shadow: 0 0 8px rgba(218, 165, 32, 0.5);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 10px;
            direction: rtl;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffd700;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(to right, #8b0000, #5d0f0f);
            color: #ffd700;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background: linear-gradient(to right, #a52a2a, #8b0000);
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
            transform: translateY(-3px);
        }
        .btn:active {
            transform: translateY(0);
        }
        footer {
            background-color: rgba(15, 15, 25, 0.95);
            border-top: 2px solid #5d0f0f;
            margin-top: 60px;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #c9aa71;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #daa520;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(20, 20, 30, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #333;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav.active ul {
                display: flex;
            }
            nav ul li {
                width: 100%;
            }
            nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid #333;
            }
            .main-content, .interaction-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            article, aside, .user-interaction {
                padding: 20px;
            }
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .py-3 { padding-top: 1rem; padding-bottom: 1rem; }
        .highlight {
            background: linear-gradient(90deg, rgba(139,0,0,0.2) 0%, rgba(93,15,15,0.2) 100%);
            border-left: 4px solid #daa520;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .quote {
            font-style: italic;
            color: #b0b0b0;
            border-left: 4px solid #8b4513;
            padding-left: 20px;
            margin: 25px 0;
            font-size: 1.2rem;
        }
        .emoji { font-size: 1.3rem; margin-right: 5px; }
