:root {
            --primary-dark: #1a0a1a;
            --primary-gold: #d4af37;
            --primary-blood: #8b0000;
            --secondary-stone: #7a7a7a;
            --light-ivory: #f5f5dc;
            --dark-shadow: rgba(0, 0, 0, 0.7);
            --container-width: 1200px;
            --font-serif: 'Times New Roman', Times, serif;
            --font-sans: Arial, Helvetica, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            line-height: 1.8;
            color: var(--light-ivory);
            background-color: var(--primary-dark);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(139, 0, 0, 0.05) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--primary-gold);
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px var(--dark-shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: var(--font-serif);
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-gold);
            text-shadow: 2px 2px 4px var(--dark-shadow);
            letter-spacing: 2px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo span {
            color: var(--light-ivory);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-gold);
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: bold;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav a:hover {
            background-color: rgba(212, 175, 55, 0.2);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(122, 122, 122, 0.1);
            border-bottom: 1px solid var(--secondary-stone);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--light-ivory);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        main {
            padding: 40px 0;
            min-height: 200vh;
        }
        article {
            background-color: rgba(30, 15, 30, 0.8);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px var(--dark-shadow);
            border: 1px solid var(--secondary-stone);
        }
        h1, h2, h3, h4 {
            font-family: var(--font-serif);
            color: var(--primary-gold);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 3px double var(--primary-gold);
            padding-bottom: 25px;
            margin-bottom: 35px;
        }
        h2 {
            font-size: 2.4rem;
            margin-top: 50px;
            border-left: 5px solid var(--primary-blood);
            padding-left: 20px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 35px;
            color: var(--light-ivory);
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 25px;
            color: #ccc;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-style: italic;
            color: #d4af37;
            text-align: center;
            padding: 20px;
            border-top: 1px solid var(--primary-gold);
            border-bottom: 1px solid var(--primary-gold);
            margin: 40px 0;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-gold);
            margin: 30px 0;
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 35px auto;
            border-radius: 10px;
            border: 3px solid var(--secondary-stone);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--secondary-stone);
            margin-top: -25px;
            margin-bottom: 35px;
            font-size: 0.95rem;
        }
        .quote {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            color: var(--primary-gold);
            text-align: center;
            padding: 40px;
            margin: 50px 0;
            background: rgba(26, 10, 26, 0.7);
            border-radius: 10px;
            position: relative;
            border: 1px solid var(--primary-gold);
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--primary-blood);
            position: absolute;
            opacity: 0.5;
        }
        .quote::before {
            top: 10px;
            left: 20px;
        }
        .quote::after {
            bottom: 10px;
            right: 20px;
        }
        .interactive-section {
            background: linear-gradient(to right, rgba(26,10,26,0.9), rgba(70,30,70,0.9));
            padding: 30px;
            border-radius: 10px;
            margin: 50px 0;
            border: 2px solid var(--primary-blood);
        }
        .interactive-section h3 {
            text-align: center;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--light-ivory);
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: 1px solid var(--secondary-stone);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light-ivory);
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        button {
            background: linear-gradient(to bottom, var(--primary-gold), #b8941f);
            color: var(--primary-dark);
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 20px auto;
        }
        button:hover {
            background: linear-gradient(to bottom, #e6c158, var(--primary-gold));
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
            transform: translateY(-3px);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            direction: rtl;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2.5rem;
            color: var(--secondary-stone);
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: var(--primary-gold);
        }
        .updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--secondary-stone);
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px dashed var(--secondary-stone);
        }
        footer {
            background-color: #0f050f;
            padding: 50px 0 20px;
            border-top: 2px solid var(--primary-gold);
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--primary-gold);
            font-size: 1.4rem;
            margin-bottom: 25px;
            border-bottom: 1px solid var(--primary-gold);
            padding-bottom: 10px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background: rgba(212, 175, 55, 0.1);
            padding: 15px;
            margin: 10px 0;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.25);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--secondary-stone);
            color: var(--secondary-stone);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .header-container { flex-direction: column; gap: 20px; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: rgba(26, 10, 26, 0.98);
                padding: 20px;
                border-radius: 0 0 10px 10px;
                box-shadow: 0 10px 20px var(--dark-shadow);
            }
            nav.active ul {
                display: flex;
            }
            .header-container {
                flex-direction: row;
                justify-content: space-between;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .quote { font-size: 1.2rem; padding: 25px; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
