        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d0f12;
            color: #e9e2d6;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 50%, rgba(168, 129, 65, 0.05) 0%, transparent 20%);
        }
        a {
            color: #d4a35e;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f0c67c;
            text-shadow: 0 0 8px rgba(212, 163, 94, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section, article, header, footer, nav, aside {
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1d23 0%, #0d0f12 100%);
            border-bottom: 1px solid #3a3328;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #d4a35e, #a88141);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            text-transform: uppercase;
            font-family: 'Trebuchet MS', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo span {
            color: #e9e2d6;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #a0a0a0;
            background-color: #15181e;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #d4a35e;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .separator {
            margin: 0 8px;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 25px;
        }
        .nav-list a {
            padding: 8px 5px;
            font-weight: 600;
            position: relative;
        }
        .nav-list a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4a35e;
            transition: width 0.3s;
        }
        .nav-list a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4a35e;
            cursor: pointer;
            padding: 5px;
        }
        .search-container {
            margin: 30px auto 40px;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #3a3328;
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: #1a1d23;
            color: #e9e2d6;
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #8a7f6d;
        }
        .search-button {
            background: linear-gradient(to right, #a88141, #d4a35e);
            border: none;
            color: #0d0f12;
            padding: 0 30px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #b9924e, #e6b86a);
            padding: 0 35px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0 50px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 29, 35, 0.7);
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #3a3328;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #f0c67c;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
            border-bottom: 3px solid #d4a35e;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #e9e2d6;
            padding-left: 15px;
            border-left: 5px solid #d4a35e;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #d4a35e;
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 12px;
            color: #b8a98a;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #c9bfaa;
            margin-bottom: 30px;
            line-height: 1.8;
            background: rgba(168, 129, 65, 0.08);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #d4a35e;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(212, 163, 94, 0.15) 0%, transparent 100%);
            padding: 15px 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #d4a35e;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #a0a0a0;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #c9bfaa;
            border-left: 5px solid #a88141;
            padding-left: 25px;
            margin: 30px 0 30px 30px;
            quotes: "“" "”" "‘" "’";
        }
        .quote:before {
            content: open-quote;
            font-size: 3rem;
            color: #d4a35e;
            vertical-align: -0.4em;
            margin-right: 10px;
        }
        .internal-links {
            background: rgba(42, 45, 53, 0.7);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px dashed #5a5347;
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .internal-links ul {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        .internal-links li a {
            background: rgba(26, 29, 35, 0.8);
            padding: 10px 20px;
            border-radius: 50px;
            display: block;
            border: 1px solid #5a5347;
        }
        .internal-links li a:hover {
            background: rgba(212, 163, 94, 0.15);
            border-color: #d4a35e;
            transform: translateY(-3px);
        }
        aside {
            background: rgba(26, 29, 35, 0.7);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            border: 1px solid #3a3328;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #d4a35e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a3328;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            direction: rtl;
            margin-bottom: 10px;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #5a5347;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #f0c67c;
        }
        .rating-widget button,
        .comment-form button {
            background: linear-gradient(to right, #a88141, #d4a35e);
            color: #0d0f12;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background: linear-gradient(to right, #b9924e, #e6b86a);
            transform: translateY(-2px);
        }
        .comment-form textarea {
            width: 100%;
            background: #1a1d23;
            border: 1px solid #3a3328;
            border-radius: 8px;
            padding: 15px;
            color: #e9e2d6;
            min-height: 120px;
            margin-bottom: 15px;
            resize: vertical;
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: #d4a35e;
        }
        footer {
            background: linear-gradient(135deg, #15181e 0%, #0d0f12 100%);
            border-top: 1px solid #3a3328;
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #a88141, #d4a35e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-nav-column h4 {
            color: #f0c67c;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-nav-column ul {
            list-style: none;
        }
        .footer-nav-column li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            background: rgba(42, 45, 53, 0.8);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
        }
        friend-link h3 {
            color: #d4a35e;
            margin-bottom: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 10px 15px;
            padding: 10px 20px;
            background: rgba(26, 29, 35, 0.8);
            border-radius: 50px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #3a3328;
            color: #8a7f6d;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1d23;
                padding: 20px;
                border-top: 1px solid #3a3328;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list li {
                margin: 10px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .main-content {
                gap: 25px;
            }
            article, aside {
                padding: 25px 20px;
            }
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            .internal-links ul {
                flex-direction: column;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 163, 94, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(212, 163, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 163, 94, 0); }
        }
        .img-zoom {
            overflow: hidden;
            border-radius: 8px;
        }
        .img-zoom img {
            transition: transform 0.5s ease;
        }
        .img-zoom:hover img {
            transform: scale(1.05);
        }
