        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-gold: #d4af37;
            --accent-red: #c53030;
            --text-light: #f1f5f9;
            --text-muted: #94a3b8;
            --border-color: #2d3748;
            --section-padding: 2rem;
            --border-radius: 8px;
            --transition-speed: 0.3s;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .section {
            padding: var(--section-padding) 0;
            border-bottom: 1px solid var(--border-color);
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .site-header {
            background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-dark));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width var(--transition-speed);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.5);
            border-top: 1px solid var(--border-color);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(255,255,255,0.03);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb span {
            color: var(--accent-gold);
            margin: 0 5px;
        }
        .hero {
            text-align: center;
            padding: 3rem 0;
            background: radial-gradient(circle at center, rgba(45, 55, 72, 0.5), transparent);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
            text-shadow: 0 4px 8px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
        }
        .article-body h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #e2e8f0;
        }
        .article-body h4 {
            font-size: 1.4rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #cbd5e1;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .article-body em {
            color: var(--text-muted);
            font-style: italic;
        }
        .image-with-caption {
            margin: 2rem 0;
            text-align: center;
        }
        .image-with-caption figcaption {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
        }
        .blockquote {
            border-left: 4px solid var(--accent-gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #cbd5e1;
            background-color: rgba(255, 255, 255, 0.03);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .sidebar {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .link-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .link-list a {
            display: flex;
            align-items: center;
        }
        .link-list i {
            margin-right: 10px;
            color: var(--accent-red);
        }
        .interactive-widget {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
        }
        .interactive-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: var(--border-radius);
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button {
            background: linear-gradient(to right, var(--accent-gold), #b8860b);
            color: var(--primary-dark);
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition-speed);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover {
            background: linear-gradient(to right, #ffd700, var(--accent-gold));
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(212, 175, 55, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 0.5rem 0;
            direction: rtl; 
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            margin: 0;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .site-footer {
            background-color: var(--secondary-dark);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            transition: background-color var(--transition-speed);
        }
        friend-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .last-updated {
            color: var(--accent-gold);
            font-weight: 600;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .article-body h2 {
                font-size: 1.9rem;
            }
            .article-body h3 {
                font-size: 1.6rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .sidebar {
                position: static;
            }
        }
        @media print {
            .site-header, .sidebar, .interactive-widget, .site-footer, .breadcrumb {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            a {
                color: blue;
                text-decoration: underline;
            }
        }
