*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --gold: #f5a623;
            --text: #eaeaea;
            --text-dim: #a0a0b0;
            --bg: #0f0f1a;
            --card-bg: #1e1e33;
            --border: #2a2a40;
            --green: #0f3460;
            --success: #4caf50;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-bottom: 3px solid var(--accent);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--text);
            text-decoration: none;
            letter-spacing: 1px;
            background: linear-gradient(45deg, var(--accent), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform .3s;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text);
            cursor: pointer;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: var(--text);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
            font-size: .9rem;
            background: rgba(255, 255, 255, .08);
            transition: all .3s;
        }
        .main-nav a:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }
        .breadcrumb-wrap {
            background: var(--secondary);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
            font-size: .85rem;
        }
        .breadcrumb a {
            color: var(--gold);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li+li::before {
            content: '/';
            color: var(--text-dim);
            margin: 0 6px;
        }
        .breadcrumb .active {
            color: var(--text-dim);
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .8)), url('https://images.unsplash.com/photo-1560972550-abc3456b1d2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            border-bottom: 4px solid var(--accent);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, var(--accent), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-dim);
            max-width: 700px;
            margin: 0 auto;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        @media(max-width:992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--gold);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            position: relative;
        }
        .article-body h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--gold);
        }
        .article-body h3 {
            font-size: 1.4rem;
            margin: 30px 0 15px;
            color: var(--text);
        }
        .article-body h4 {
            font-size: 1.15rem;
            margin: 20px 0 10px;
            color: var(--accent);
        }
        .article-body p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #ccc;
        }
        .article-body ul,
        .article-body ol {
            margin: 0 0 20px 25px;
            color: #ccc;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body strong {
            color: var(--gold);
        }
        .article-body a {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px dotted var(--accent);
        }
        .article-body a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }
        .article-body img {
            max-width: 100%;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
            border: 2px solid var(--border);
        }
        .article-body figure {
            margin: 20px 0;
        }
        .article-body figcaption {
            text-align: center;
            font-size: .85rem;
            color: var(--text-dim);
            margin-top: 8px;
        }
        .highlight-box {
            background: var(--secondary);
            border-left: 4px solid var(--accent);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .highlight-box p {
            margin: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .side-widget {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border);
        }
        .side-widget h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--gold);
            border-bottom: 2px solid var(--border);
            padding-bottom: 8px;
        }
        .side-widget ul {
            list-style: none;
        }
        .side-widget li {
            margin-bottom: 8px;
        }
        .side-widget a {
            color: var(--text);
            text-decoration: none;
            font-size: .9rem;
            display: block;
            padding: 6px 10px;
            border-radius: 6px;
            transition: all .3s;
        }
        .side-widget a:hover {
            background: var(--secondary);
            color: var(--accent);
            padding-left: 15px;
        }
        .search-form {
            display: flex;
            gap: 8px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            border-radius: 30px;
            font-size: .95rem;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--accent);
        }
        .search-form button {
            background: var(--accent);
            border: none;
            color: #fff;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            cursor: pointer;
            transition: all .3s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: var(--gold);
            transform: scale(1.08);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            border-radius: 8px;
            font-family: inherit;
            font-size: .9rem;
            resize: vertical;
            min-height: 80px;
        }
        .comment-form textarea:focus {
            border-color: var(--accent);
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            border-radius: 8px;
            margin-bottom: 10px;
            font-size: .9rem;
        }
        .comment-form button {
            background: var(--accent);
            border: none;
            color: #fff;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            transition: all .3s;
            width: 100%;
        }
        .comment-form button:hover {
            background: var(--gold);
        }
        .score-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 10px;
            justify-content: center;
            font-size: 1.6rem;
            cursor: pointer;
        }
        .score-stars i {
            color: var(--text-dim);
            transition: all .2s;
        }
        .score-stars i:hover,
        .score-stars i.active {
            color: var(--gold);
        }
        .score-form button {
            background: var(--green);
            border: none;
            color: #fff;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: all .3s;
        }
        .score-form button:hover {
            background: var(--success);
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: .95rem;
        }
        .info-table th,
        .info-table td {
            padding: 12px 15px;
            border: 1px solid var(--border);
            text-align: left;
        }
        .info-table th {
            background: var(--secondary);
            color: var(--gold);
            font-weight: 700;
        }
        .info-table tr:nth-child(even) {
            background: rgba(255, 255, 255, .03);
        }
        .info-table tr:hover {
            background: rgba(233, 69, 96, .05);
        }
        .site-footer {
            background: var(--primary);
            border-top: 3px solid var(--accent);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: .85rem;
            color: var(--text-dim);
        }
        friend-link {
            display: block;
            background: var(--secondary);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--border);
        }
        friend-link h3 {
            color: var(--gold);
            margin-bottom: 12px;
            font-size: 1rem;
        }
        friend-link a {
            color: var(--text);
            text-decoration: none;
            margin: 4px 0;
            display: inline-block;
            font-size: .85rem;
            padding: 3px 8px;
            border-radius: 4px;
        }
        friend-link a:hover {
            color: var(--accent);
            background: rgba(233, 69, 96, .1);
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--secondary);
                padding: 15px;
                border-radius: 8px;
                margin-top: 10px;
            }
            .main-nav.open {
                display: flex;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-body {
                padding: 20px;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
            .hero {
                padding: 50px 0;
            }
        }
        @media(max-width:480px) {
            .article-body {
                padding: 15px;
            }
            .content-wrapper {
                padding: 20px 0;
            }
        }
