        * { 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: #d8d0c5;
            background: linear-gradient(135deg, #0c0a06 0%, #1a150e 50%, #0c0a06 100%);
            background-attachment: fixed;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #c8a165; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #e6c78c; text-shadow: 0 0 8px rgba(200, 161, 101, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #f0e6d2; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); text-align: center; margin: 2rem auto; padding-bottom: 1rem; border-bottom: 3px solid #c8a165; max-width: 1000px; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 3rem; padding-left: 0.5rem; border-left: 4px solid #c8a165; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 2rem; color: #d8c5a6; }
        h4 { font-size: 1.3rem; margin-top: 1.5rem; color: #b8a78b; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        .lead { font-size: 1.3rem; color: #f0e6d2; font-weight: 300; margin-bottom: 2rem; }
        strong { color: #f0e6d2; font-weight: 700; }
        em { font-style: italic; color: #c8a165; }
        blockquote {
            border-left: 4px solid #c8a165;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #b8a78b;
            background: rgba(200, 161, 101, 0.05);
            padding: 1.5rem;
            border-radius: 0 5px 5px 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .site-header {
            background: rgba(12, 10, 6, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #332d21;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #c8a165;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
            transition: all 0.3s;
        }
        .my-logo:hover {
            color: #e6c78c;
            text-shadow: 0 0 15px rgba(200, 161, 101, 0.7);
            transform: scale(1.02);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(26, 21, 14, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #c8a165;
        }
        .breadcrumb a { color: #b8a78b; }
        .breadcrumb a:hover { color: #c8a165; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #d8d0c5;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c8a165;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #c8a165;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(12, 10, 6, 0.98);
                padding: 2rem;
                transition: left 0.5s ease;
                z-index: 999;
                border-top: 1px solid #332d21;
            }
            .main-nav.active { left: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .search-module {
            background: rgba(26, 21, 14, 0.7);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid #332d21;
        }
        .search-module h3 { margin-top: 0; }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: #0c0a06;
            border: 1px solid #c8a165;
            border-radius: 4px 0 0 4px;
            color: #f0e6d2;
            font-size: 1rem;
        }
        .search-btn {
            background: #c8a165;
            color: #0c0a06;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 700;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #e6c78c; }
        .main-content {
            background: rgba(12, 10, 6, 0.7);
            padding: 2.5rem;
            border-radius: 10px;
            border: 1px solid #332d21;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 2px solid #c8a165;
        }
        .content-link {
            background: rgba(200, 161, 101, 0.1);
            padding: 0.3rem 0.6rem;
            border-radius: 3px;
            border-bottom: 1px dashed #c8a165;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(26, 21, 14, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #332d21;
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c8a165;
        }
        .rating-module, .comment-module {
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(26, 21, 14, 0.7);
            border-radius: 8px;
            border: 1px solid #332d21;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .star-rating {
            direction: rtl;
            font-size: 1.8rem;
            display: inline-block;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label { color: #ffc107; }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem;
            background: #0c0a06;
            border: 1px solid #332d21;
            border-radius: 4px;
            color: #f0e6d2;
            font-family: inherit;
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-submit {
            background: #c8a165;
            color: #0c0a06;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 700;
            justify-self: start;
            transition: background 0.3s;
        }
        .form-submit:hover { background: #e6c78c; }
        .site-footer {
            background: rgba(12, 10, 6, 0.95);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 1px solid #332d21;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            margin-top: 1rem;
        }
        .friend-links a {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(200, 161, 101, 0.1);
            border-radius: 4px;
            border: 1px solid #332d21;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #332d21;
            color: #888;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .highlight { background: linear-gradient(90deg, transparent 0%, rgba(200, 161, 101, 0.15) 50%, transparent 100%); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .platform-badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            margin: 0.2rem;
            background: #332d21;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .ps5 { background: #006fcd; color: white; }
        .xbox { background: #107c10; color: white; }
        .pc { background: #e6a400; color: black; }
