        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-dark: #1a1a2e;
            --primary-accent: #e63946;
            --secondary-accent: #fca311;
            --text-light: #f1faee;
            --text-gray: #a8dadc;
            --bg-card: #16213e;
            --border-color: #2d4263;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            --transition: all 0.3s ease;
        }
        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%, #0f172a 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: var(--secondary-accent); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--primary-accent); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .py-3 { padding-top: 2rem; padding-bottom: 2rem; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; color: var(--secondary-accent); }
        .emoji { margin-right: 0.5rem; }
        .site-header {
            background-color: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-accent);
            padding: 1rem 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--secondary-accent), var(--primary-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .my-logo a:hover { opacity: 0.9; }
        .main-nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .main-nav a {
            color: var(--text-light);
            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: var(--secondary-accent);
            transition: width 0.3s;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a { color: inherit; }
        .breadcrumb span { margin: 0 0.5rem; }
        .search-section {
            background-color: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-color);
            background: rgba(255,255,255,0.05);
            color: var(--text-light);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(to right, var(--primary-accent), #d90429);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover { opacity: 0.9; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-card {
            background-color: var(--bg-card);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary-accent);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: space-between;
            color: var(--text-gray);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .article-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            border: 3px solid var(--border-color);
        }
        h2, h3, h4 {
            color: var(--secondary-accent);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.6rem; }
        h4 { font-size: 1.3rem; color: var(--text-gray); }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight-box {
            background: rgba(252, 163, 17, 0.1);
            border-left: 4px solid var(--secondary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            list-style: none;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
        }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
        .link-list li::before {
            content: '⚔️';
            position: absolute;
            left: 0;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 15px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--secondary-accent);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            direction: rtl;
            justify-content: center;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label { color: gold; }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-family: inherit;
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-accent), #d90429);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4); }
        .site-footer {
            background-color: rgba(10, 15, 30, 0.98);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid var(--border-color);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-logo { font-size: 1.8rem; margin-bottom: 1rem; }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--text-gray);
            transition: var(--transition);
        }
        friend-link:hover {
            color: var(--secondary-accent);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                right: -100%;
                background-color: var(--bg-card);
                width: 80%;
                height: calc(100vh - 70px);
                transition: right 0.5s ease;
                padding: 2rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                overflow-y: auto;
            }
            .main-nav.active { right: 0; }
            .main-nav ul { flex-direction: column; gap: 1.5rem; }
            .article-header h1 { font-size: 2.2rem; }
            .meta-info { flex-direction: column; gap: 0.5rem; }
        }
