        * {
            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 100%);
            color: #e0e0e0;
            overflow-x: hidden;
        }
        a {
            color: #c8a97e;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #d4b483;
            text-shadow: 0 0 8px rgba(200, 169, 126, 0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 3px solid #c8a97e;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #c8a97e;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .logo a:hover {
            color: #d4b483;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(200, 169, 126, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #c8a97e;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #444;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #333;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #c8a97e;
        }
        .search-box {
            margin: 30px 0;
            background: rgba(30, 30, 40, 0.7);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #444;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #555;
            border-radius: 8px;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 30px;
            background: linear-gradient(to right, #c8a97e, #b8934e);
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        article {
            background: rgba(25, 25, 35, 0.8);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #444;
        }
        h1 {
            font-family: 'Cinzel', serif;
            font-size: 3.2rem;
            color: #c8a97e;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            text-shadow: 2px 2px 6px #000;
        }
        h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.4rem;
            color: #d4b483;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c8a97e;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0c9a0;
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #eee;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(200,169,126,0.15) 0%, transparent 100%);
            border-left: 5px solid #c8a97e;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #bbb;
            text-align: center;
            padding: 30px;
            border-top: 2px solid #555;
            border-bottom: 2px solid #555;
            margin: 40px 0;
        }
        .content-links {
            margin: 20px 0;
            padding: 20px;
            background: rgba(40, 40, 60, 0.5);
            border-radius: 10px;
        }
        .content-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .content-links li {
            background: rgba(200, 169, 126, 0.1);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid #555;
        }
        sidebar {
            background: rgba(25, 25, 35, 0.8);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid #444;
            height: fit-content;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #c8a97e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #555;
        }
        .comment-form, .rating-form {
            background: rgba(30, 30, 45, 0.9);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #555;
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #ccc;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            background: #1a1a2e;
            border: 2px solid #555;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #c8a97e;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            margin-bottom: 20px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffc107;
        }
        .btn-submit {
            display: block;
            width: 100%;
            padding: 18px;
            background: linear-gradient(to right, #c8a97e, #b8934e);
            color: #000;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(200, 169, 126, 0.3);
        }
        footer {
            background: rgba(10, 10, 15, 0.98);
            padding: 50px 0 30px;
            margin-top: 80px;
            border-top: 3px solid #c8a97e;
        }
        friend-links {
            display: block;
            margin: 30px 0;
            padding: 25px;
            background: rgba(30, 30, 45, 0.7);
            border-radius: 12px;
        }
        friend-links h3 {
            color: #c8a97e;
            margin-bottom: 20px;
            text-align: center;
        }
        friend-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        friend-links li {
            padding: 12px 25px;
            background: rgba(200, 169, 126, 0.1);
            border-radius: 8px;
            border: 1px solid #555;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            article, sidebar { padding: 25px; }
            .main-content { gap: 25px; }
            .logo a { font-size: 2rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-form button { padding: 15px; }
        }
