        * { 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.7;
            color: #333;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e1e1e1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #a52a2a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #d4af37;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #ffd700;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ccc;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #d4af37;
            background: rgba(164, 42, 42, 0.1);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 12px;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: calc(100% - 24px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 30, 46, 0.8);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #a9b7c6;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #d4af37;
            text-decoration: underline;
        }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .article-container {
            background: rgba(22, 33, 62, 0.8);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #444;
        }
        h1 {
            font-family: 'Cinzel', serif;
            font-size: 3.5rem;
            color: #d4af37;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.2;
            text-shadow: 3px 3px 6px #000;
            border-bottom: 3px solid #a52a2a;
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.5rem;
            color: #b8860b;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #a52a2a;
        }
        h3 {
            font-size: 2rem;
            color: #daa520;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #cd853f;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #f0e68c;
            text-align: center;
            margin-bottom: 40px;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(164,42,42,0.2) 0%, transparent 100%);
            padding: 20px;
            border-left: 4px solid #a52a2a;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        strong {
            color: #f0e68c;
            font-weight: 700;
        }
        em {
            color: #b0c4de;
            font-style: italic;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .feature-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            border: 3px solid #d4af37;
            margin: 30px auto;
            display: block;
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s;
        }
        .feature-image:hover {
            transform: scale(1.02);
        }
        .interactive-box {
            background: rgba(26, 26, 46, 0.9);
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .interactive-box h3 {
            margin-top: 0;
            color: #d4af37;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ccc;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #555;
            background: #1e1e2e;
            color: #e1e1e1;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        button {
            background: linear-gradient(to bottom, #a52a2a, #8b0000);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            background: linear-gradient(to bottom, #c33, #a52a2a);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(165, 42, 42, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 15px 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .content-links {
            margin: 25px 0;
            padding: 20px;
            background: rgba(30, 30, 50, 0.6);
            border-radius: 8px;
        }
        .content-links h4 {
            color: #b8860b;
            margin-top: 0;
        }
        .content-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .content-links a {
            color: #a9b7c6;
            text-decoration: none;
            padding: 8px 15px;
            display: block;
            border-radius: 5px;
            background: rgba(255,255,255,0.05);
            transition: all 0.3s;
        }
        .content-links a:hover {
            background: rgba(212, 175, 55, 0.15);
            color: #ffd700;
            padding-left: 20px;
        }
        .site-footer {
            background: rgba(10, 10, 10, 0.98);
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 2px solid #a52a2a;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        friend-link a {
            color: #a9b7c6;
            text-decoration: none;
            transition: color 0.3s;
        }
        friend-link a:hover {
            color: #d4af37;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .main-nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .header-inner { flex-wrap: wrap; }
            .hamburger { display: block; }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 400px;
                margin-top: 20px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .article-container { padding: 25px; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            .lead { font-size: 1.2rem; }
            .interactive-box { padding: 20px; }
        }
