:root {
            --primary-color: #0a1428;
            --secondary-color: #c89b3c;
            --accent-color: #1e2328;
            --text-primary: #f0e6d2;
            --text-secondary: #a09b8c;
            --bg-dark: #010a13;
            --bg-card: #1e282d;
            --border-gold: #785a28;
            --success: #00a300;
            --warning: #ffaa00;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--bg-dark);
            background-image: radial-gradient(circle at 15% 50%, rgba(20, 35, 70, 0.8) 0%, transparent 20%),
                              radial-gradient(circle at 85% 30%, rgba(200, 155, 60, 0.15) 0%, transparent 20%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #f0e6d2;
            text-decoration: underline;
        }
        .site-header {
            background-color: var(--primary-color);
            border-bottom: 2px solid var(--border-gold);
            padding: 1.2rem 0;
            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;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(to right, #c8aa6e, #f0e6d2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 0.5rem;
            border-right: 3px solid var(--border-gold);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(200, 155, 60, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary-color);
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(120, 90, 40, 0.3);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2.5rem 0;
        }
        article {
            background: rgba(10, 20, 40, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 2.5rem;
            border: 1px solid rgba(200, 155, 60, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1, h2, h3, h4 {
            font-family: 'Cinzel', serif;
            color: var(--secondary-color);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 2px solid var(--border-gold);
            padding-bottom: 1.5rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2.4rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #d1b87a;
        }
        h4 {
            font-size: 1.4rem;
            color: #a09b8c;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #f0e6d2;
            font-weight: 300;
            background: rgba(200, 155, 60, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
        }
        strong {
            color: var(--secondary-color);
            font-weight: 700;
        }
        em {
            color: #d1b87a;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(200,155,60,0.15) 0%, rgba(10,20,40,0) 70%);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--secondary-color);
        }
        .info-box {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 1.8rem;
            margin: 2rem 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            padding: 2rem;
            border-top: 2px solid var(--border-gold);
            border-bottom: 2px solid var(--border-gold);
            margin: 2.5rem 0;
            text-align: center;
            color: #d1b87a;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 2rem;
            color: var(--secondary-color);
            vertical-align: -0.4em;
            margin: 0 5px;
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid var(--border-gold);
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 25px rgba(200, 155, 60, 0.3);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(10, 20, 40, 0.7);
            border-radius: 10px;
            padding: 1.8rem;
            border: 1px solid rgba(200, 155, 60, 0.3);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            border-bottom: 1px solid var(--border-gold);
            padding-bottom: 0.8rem;
            margin-bottom: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem;
            background-color: rgba(30, 35, 40, 0.8);
            border: 1px solid var(--border-gold);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #e6b450;
        }
        .user-interaction {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--border-gold);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            background-color: rgba(30, 35, 40, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--text-secondary);
            cursor: pointer;
            margin-top: 0.5rem;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--warning);
        }
        .submit-btn {
            background: linear-gradient(to right, #c89b3c, #d1b87a);
            color: var(--primary-color);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #d1b87a, #e6b450);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(200, 155, 60, 0.4);
        }
        site-footer {
            background-color: var(--primary-color);
            border-top: 2px solid var(--border-gold);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-links h4 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(30, 35, 40, 0.8);
            border-radius: 5px;
            margin-bottom: 0.8rem;
            border-left: 3px solid var(--secondary-color);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(200, 155, 60, 0.15);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(120, 90, 40, 0.5);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-area {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                border-right: none;
                border-bottom: 3px solid var(--border-gold);
                margin-bottom: 1rem;
                width: 100%;
                text-align: center;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1rem;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                background-color: rgba(30, 35, 40, 0.9);
                border-radius: 5px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            article {
                padding: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget {
            animation: fadeIn 0.8s ease-out;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--border-gold);
        }
        .emoji {
            font-size: 1.2em;
            vertical-align: middle;
            margin: 0 3px;
        }
