        :root {
            --primary-dark: #1a1a2e;
            --primary-accent: #c53030;
            --secondary-accent: #d4a017;
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --bg-section: #23233a;
            --border-color: #444;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--secondary-accent);
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.5rem;
            border-bottom: 3px solid var(--primary-accent);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-left: 10px;
            border-left: 5px solid var(--primary-accent);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-accent);
            text-decoration: underline;
        }
        .bold {
            font-weight: 700;
            color: var(--secondary-accent);
        }
        .highlight {
            background-color: rgba(212, 160, 23, 0.1);
            padding: 2px 5px;
            border-radius: 3px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            aside {
                order: -1;
            }
        }
        header {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--primary-accent);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--primary-accent);
        }
        .my-logo:hover {
            color: var(--secondary-accent);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: var(--primary-accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                width: 70%;
                height: calc(100vh - 70px);
                padding: 30px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
        }
        .search-box {
            margin: 25px 0;
            background: var(--bg-section);
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: #2a2a3e;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-btn {
            padding: 0 25px;
            background: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            min-width: 44px;
            min-height: 44px;
        }
        .search-btn:hover {
            background: #9c2a2a;
        }
        section {
            background-color: var(--bg-section);
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        aside section {
            padding: 20px;
        }
        .info-box {
            background: linear-gradient(145deg, #2a2a3e, #1e1e2e);
            border-left: 5px solid var(--secondary-accent);
            padding: 20px;
            margin-bottom: 25px;
        }
        .info-box h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }
        ul, ol {
            padding-left: 25px;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: #2a2a3e;
            border-radius: 8px;
            overflow: hidden;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        th {
            background-color: var(--primary-accent);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #33334a;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            min-width: 44px;
            min-height: 44px;
        }
        .btn:hover {
            background-color: #9c2a2a;
            text-decoration: none;
            color: white;
        }
        .btn-secondary {
            background-color: var(--secondary-accent);
            color: #1a1a2e;
        }
        .btn-secondary:hover {
            background-color: #b3890e;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: #2a2a3e;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-accent);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating .active {
            color: gold;
        }
        .social-share {
            display: flex;
            gap: 15px;
            margin: 25px 0;
            justify-content: center;
        }
        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            transition: var(--transition);
        }
        .social-icon:hover {
            transform: translateY(-5px);
            text-decoration: none;
        }
        .fb { background: #3b5998; }
        .tw { background: #1da1f2; }
        .rd { background: #ff4500; }
        .wa { background: #25d366; }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--primary-accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #9c2a2a;
        }
        footer {
            background-color: #0d0d1a;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid var(--primary-accent);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-links h4 {
            color: var(--secondary-accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-gray);
        }
        .footer-links a:hover {
            color: var(--secondary-accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mt-20 { margin-top: 20px; }
        .p-20 { padding: 20px; }
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .gap-15 { gap: 15px; }
        .hidden { display: none; }
        .responsive-img {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        section {
            animation: fadeIn 0.8s ease-out;
        }
