:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-gold: #e6b325;
            --accent-red: #c3073f;
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        * {
            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: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            border-bottom-color: var(--accent-red);
        }
        .breadcrumb {
            background-color: rgba(22, 33, 62, 0.8);
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:last-of-type {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            margin: 0 8px;
            color: var(--text-gray);
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            border-bottom: 1px solid rgba(230, 179, 37, 0.2);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-gray);
        }
        .search-bar {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
        }
        .search-bar input {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-bar button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-bar button:hover {
            background-color: #9c0633;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .content-section {
            background-color: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .content-section h2 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-red);
        }
        .content-section h3 {
            color: var(--text-light);
            margin: 25px 0 15px;
            padding-left: 10px;
            border-left: 4px solid var(--accent-red);
        }
        .content-section h4 {
            color: var(--text-gray);
            margin: 20px 0 10px;
        }
        .content-section p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(230, 179, 37, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dotted var(--accent-gold);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 3px solid var(--accent-gold);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--text-gray);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-box {
            background-color: rgba(22, 33, 62, 0.7);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            border-top: 4px solid var(--accent-red);
        }
        .stat-box .number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            display: block;
        }
        .sidebar {
            background-color: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: var(--shadow);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: var(--accent-gold);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(230,179,37,0.3);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            display: block;
            padding: 10px 15px;
            background-color: rgba(22, 33, 62, 0.7);
            border-radius: var(--border-radius);
            border-left: 3px solid transparent;
        }
        .quick-links a:hover {
            border-left-color: var(--accent-red);
            background-color: rgba(195, 7, 63, 0.2);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 3px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px 15px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255,255,255,0.2);
            background-color: rgba(0,0,0,0.3);
            color: var(--text-light);
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 12px;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .form-button:hover {
            background-color: #9c0633;
        }
        .update-time {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 10px;
            display: block;
        }
        footer {
            background-color: rgba(0, 0, 0, 0.8);
            padding: 50px 0 20px;
            border-top: 2px solid var(--accent-gold);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        footer h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        footer .my-logo {
            font-size: 1.8rem;
            margin-bottom: 15px;
            display: inline-block;
        }
        .friend-links {
            background-color: rgba(22, 33, 62, 0.5);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 20px 0;
        }
        .friend-links h4 {
            color: var(--text-light);
            margin-bottom: 15px;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(230, 179, 37, 0.1);
            padding: 8px 15px;
            margin: 0 10px 10px 0;
            border-radius: var(--border-radius);
            border: 1px solid rgba(230, 179, 37, 0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 300px;
                margin-top: 20px;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
