        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-rust: #b7410e;
            --accent-gold: #f0a500;
            --text-light: #f1f1f1;
            --text-gray: #b0b0b0;
            --card-bg: #0f3460;
            --border-color: #2d4059;
            --shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            color: var(--text-light);
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffcc70;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            padding: 1rem 2rem;
            border-bottom: 3px solid var(--accent-rust);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--accent-rust);
            font-style: italic;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .search-form {
            flex-grow: 1;
            max-width: 500px;
            min-width: 250px;
        }
        .search-box {
            display: flex;
            width: 100%;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border-color);
            border-radius: 30px 0 0 30px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            border-color: var(--accent-gold);
        }
        .search-btn {
            background: var(--accent-rust);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #d35400;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-link {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.95rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            flex-grow: 1;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1100px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(15, 52, 96, 0.7);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-rust);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.4rem;
            margin: 3rem 0 1.5rem;
            color: #4fc3f7;
            padding-left: 0.5rem;
            border-left: 5px solid var(--accent-gold);
        }
        h3 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            color: #81c784;
        }
        h4 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: #ffb74d;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #bbdefb;
            background: rgba(33, 150, 243, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--accent-gold);
            margin-bottom: 3rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(240, 165, 0, 0.15), transparent);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .note {
            background: rgba(255, 235, 59, 0.1);
            border-left: 5px solid #ffeb3b;
            padding: 1rem 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-list {
            list-style: none;
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        .feature-list li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        .feature-list li::before {
            content: '▶';
            color: var(--accent-gold);
            position: absolute;
            left: -1.5rem;
        }
        .article-img {
            margin: 3rem auto;
            max-width: 900px;
            box-shadow: 0 12px 24px rgba(0,0,0,0.7);
            border: 2px solid var(--border-color);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(15, 52, 96, 0.7);
            border-radius: 15px;
            padding: 1.8rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-rust);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            font-size: 1.8rem;
            color: #555;
            margin: 0.5rem 0;
        }
        .stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--accent-gold);
        }
        .form-btn {
            background: linear-gradient(to right, var(--accent-rust), #e67e22);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .form-btn:hover {
            background: linear-gradient(to right, #d35400, #f39c12);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .site-footer {
            background-color: #0a0a14;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--accent-rust);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            margin-bottom: 0.8rem;
            border-left: 4px solid var(--accent-gold);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 900px) {
            .header-container {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                max-width: 100%;
                order: 3;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--secondary-dark);
                border-radius: 10px;
                padding: 1.5rem;
                margin-top: 1rem;
                order: 4;
            }
            .main-nav.active {
                display: flex;
            }
            .nav-link {
                padding: 1rem;
                border-bottom: 1px solid var(--border-color);
            }
            .nav-link:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .article-content {
                padding: 2rem;
            }
            .main-container {
                padding: 0 1rem;
                gap: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border-color);
        }
        .emoji {
            font-size: 1.2em;
            vertical-align: middle;
            margin: 0 0.2rem;
        }
