:root {
            --primary-dark: #0a1428;
            --primary-blue: #1e3a8a;
            --accent-gold: #d4af37;
            --accent-pink: #ec4899;
            --accent-teal: #0d9488;
            --text-light: #f8fafc;
            --text-gray: #cbd5e1;
            --bg-card: rgba(30, 58, 138, 0.15);
            --border-color: rgba(148, 163, 184, 0.2);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--text-gray);
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1e1b4b 100%);
            min-height: 100vh;
            padding-bottom: 2rem;
        }
        a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-gold);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: rgba(10, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: var(--text-light);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-teal);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
            color: var(--accent-gold);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        article {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 3rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--accent-gold);
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent-teal);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--accent-pink);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        strong {
            color: var(--text-light);
            font-weight: 700;
        }
        em {
            color: var(--accent-gold);
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-light);
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 0.5rem;
            font-style: italic;
        }
        aside {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--accent-pink);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: rgba(15, 23, 42, 0.7);
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: var(--accent-gold);
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: rgba(15, 23, 42, 0.7);
            color: var(--text-light);
            min-height: 120px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            padding: 0.8rem 1.5rem;
            background: var(--accent-teal);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }
        footer {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }
        friend-link a {
            color: var(--text-light);
            margin: 0 1rem;
        }
        .copyright {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 20, 40, 0.98);
                padding: 1rem;
                border-top: 1px solid var(--border-color);
            }
            nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 1.5rem;
            }
        }
