:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-red: #e94560;
            --accent-gold: #ffd700;
            --accent-steel: #b8c1cc;
            --text-light: #f5f7fa;
            --text-dim: #a0aec0;
            --shadow-heavy: 0 10px 20px rgba(0, 0, 0, 0.5);
            --shadow-light: 0 4px 8px rgba(233, 69, 96, 0.3);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            color: var(--text-light);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-shadow: var(--shadow-light);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }
        .my-logo:hover {
            letter-spacing: 4px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent-red);
            left: 0;
            bottom: -5px;
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 15px 0;
            margin-bottom: 30px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
            font-size: 0.95rem;
            color: var(--text-dim);
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--accent-steel);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .article-container {
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--border-radius);
            padding: 40px;
            border: 1px solid rgba(233, 69, 96, 0.2);
            box-shadow: var(--shadow-heavy);
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 25px;
        }
        .article-header h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #fff, var(--accent-steel));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-dim);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 5px;
            color: var(--accent-gold);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            border: 3px solid var(--accent-red);
            margin: 30px 0;
            box-shadow: var(--shadow-heavy);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .article-body h2 {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            position: relative;
        }
        .article-body h2::before {
            content: '⚔️';
            position: absolute;
            left: -40px;
            top: 5px;
        }
        .article-body h3 {
            font-size: 1.8rem;
            color: var(--accent-steel);
            margin: 35px 0 15px;
        }
        .article-body h4 {
            font-size: 1.4rem;
            color: var(--text-dim);
            margin: 25px 0 10px;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(233, 69, 96, 0.1);
            border-left: 4px solid var(--accent-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight strong {
            color: var(--accent-red);
            font-size: 1.2rem;
        }
        .interactive-box {
            background: rgba(22, 33, 62, 0.8);
            border: 1px solid var(--accent-gold);
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 30px 0;
            transition: var(--transition);
        }
        .interactive-box:hover {
            border-color: var(--accent-red);
            box-shadow: var(--shadow-light);
        }
        .interactive-box h3 {
            color: var(--accent-gold);
            margin-top: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 1px solid rgba(184, 193, 204, 0.2);
        }
        .widget h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--accent-red);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid var(--accent-steel);
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
        }
        .search-form button {
            background: var(--accent-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ff2e5a;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: var(--accent-steel);
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        .rating-widget input,
        .rating-widget textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--accent-steel);
            color: var(--text-light);
            border-radius: var(--border-radius);
        }
        .rating-widget button,
        .comment-form button {
            background: linear-gradient(to right, var(--accent-red), #c1355c);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background: linear-gradient(to right, #ff2e5a, #d32f5e);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li::before {
            content: '➤';
            position: absolute;
            left: 0;
            color: var(--accent-red);
        }
        .site-footer {
            background-color: var(--primary-dark);
            border-top: 2px solid var(--accent-red);
            margin-top: 60px;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--border-radius);
            border: 1px solid transparent;
            transition: var(--transition);
        }
        friend-link:hover {
            border-color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.05);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--secondary-dark);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                box-shadow: var(--shadow-heavy);
                z-index: 999;
            }
            .main-nav ul.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav li {
                width: 100%;
                text-align: center;
            }
            .main-nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-body h2 {
                font-size: 2rem;
            }
            .article-body h2::before {
                position: static;
                margin-right: 10px;
            }
            .article-container {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
        }
