        * { 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: #e8e0d0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 25%, #2c241b 50%, #1a1a1a 75%, #0c0c0c 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #d4af37; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #f7e7a6; text-shadow: 0 0 8px rgba(212, 175, 55, 0.7); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid #3a2c17;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(to right, #d4af37, #ad8c3a, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .breadcrumb {
            padding: 10px 20px;
            background: rgba(42, 35, 24, 0.7);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a { color: #b8a577; }
        .breadcrumb span { color: #d4af37; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: #e8e0d0;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            color: #d4af37;
            border-bottom-color: #d4af37;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                right: -100%;
                background: rgba(20, 18, 15, 0.98);
                width: 80%;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.4s ease;
                overflow-y: auto;
                border-left: 1px solid #3a2c17;
            }
            .main-nav.active { right: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
        }
        .hero {
            text-align: center;
            padding: 4rem 2rem;
            background: radial-gradient(ellipse at center, rgba(58, 44, 23, 0.4) 0%, transparent 70%);
            margin-bottom: 3rem;
            border-bottom: 1px solid #3a2c17;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #f5e9c9;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #c9bca3;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(to bottom, #d4af37, #9c7c2e);
            color: #1a150d;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            font-weight: bold;
            font-size: 1.2rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
            color: #0c0c0c;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(28, 25, 20, 0.8);
            border-radius: 8px;
            padding: 2.5rem;
            border: 1px solid #3a2c17;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h2, article h3, article h4 {
            color: #f5e9c9;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #4a3c2a;
            padding-bottom: 0.5rem;
        }
        article h2 { font-size: 2.2rem; }
        article h3 { font-size: 1.8rem; }
        article h4 { font-size: 1.4rem; }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article emoji { font-size: 1.2em; margin-right: 5px; }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 4px 4px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 6px;
            border: 2px solid #4a3c2a;
            margin: 2rem auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .sidebar-widget {
            background: rgba(28, 25, 20, 0.8);
            border: 1px solid #3a2c17;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #d4af37;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: rgba(42, 35, 24, 0.7);
            border: 1px solid #5d4c32;
            border-radius: 4px;
            color: #e8e0d0;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(to bottom, #3a2c17, #2a2318);
            color: #e8e0d0;
            border: 1px solid #5d4c32;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(to bottom, #4a3c27, #3a3328);
        }
        .stars { color: #d4af37; font-size: 1.2rem; margin-bottom: 0.5rem; }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1rem; position: relative; }
        .link-list li:before {
            content: '➔';
            color: #d4af37;
            position: absolute;
            left: 0;
        }
        .site-footer {
            background: rgba(10, 10, 10, 0.95);
            border-top: 2px solid #3a2c17;
            margin-top: 4rem;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(42, 35, 24, 0.5);
            margin-bottom: 0.5rem;
            border-radius: 4px;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        friend-link:hover {
            border-left-color: #d4af37;
            background: rgba(42, 35, 24, 0.8);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3a2c17;
            color: #b8a577;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; color: #f5e9c9; }
        .last-updated {
            font-style: italic;
            color: #b8a577;
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #5d4c32;
        }
