*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent2: #0f3460;
            --light: #f5f5f7;
            --text: #2d2d2d;
            --white: #fff;
            --gold: #ffd700;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.8;
        }
        a {
            text-decoration: none;
            color: var(--accent);
            transition: background .2s, color .2s;
        }
        a:hover {
            color: var(--accent2);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--primary);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 10px 20px;
            max-width: 1280px;
            margin: auto;
        }
        .my-logo {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 900;
            font-size: 28px;
            color: var(--accent);
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--gold);
        }
        .nav-menu {
            display: flex;
            gap: 18px;
            list-style: none;
            align-items: center;
        }
        .nav-menu a {
            color: #ccc;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: .3s;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: var(--accent);
            color: var(--white);
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 26px;
            color: var(--white);
            cursor: pointer;
            padding: 5px;
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                position: fixed;
                top: 56px;
                left: 0;
                width: 65%;
                height: 100vh;
                background: var(--primary);
                flex-direction: column;
                align-items: flex-start;
                padding: 30px 25px;
                gap: 20px;
                transform: translateX(-100%);
                transition: transform .35s ease;
                box-shadow: 2px 0 20px rgba(0, 0, 0, .4);
                z-index: 99;
            }
            .nav-menu.open {
                transform: translateX(0);
            }
            .nav-menu a {
                font-size: 16px;
                padding: 10px 15px;
                width: 100%;
            }
        }
        .breadcrumb-wrap {
            background: #eee;
            padding: 12px 20px;
            font-size: 13px;
        }
        .breadcrumb-wrap .breadcrumb {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
            font-size: 13px;
            color: #666;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin: 0 6px;
            color: #999;
        }
        .breadcrumb a {
            color: var(--accent2);
            font-weight: 600;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 60%, #e94560 100%);
            color: var(--white);
            padding: 70px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(32px, 6vw, 56px);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto 18px;
            opacity: .9;
        }
        .hero .date-badge {
            display: inline-block;
            background: rgba(255, 255, 255, .15);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            border: 1px solid rgba(255, 255, 255, .25);
        }
        .search-section {
            background: var(--secondary);
            padding: 28px 20px;
        }
        .search-box {
            display: flex;
            max-width: 640px;
            margin: auto;
            gap: 6px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 30px;
            background: var(--white);
            font-size: 15px;
        }
        .search-box button {
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background .3s, transform .2s;
        }
        .search-box button:hover {
            background: #c5334e;
            transform: scale(1.03);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 50px 20px;
            max-width: 1280px;
            margin: auto;
        }
        @media(max-width:920px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
        }
        @media(max-width:768px) {
            .article-body {
                padding: 24px;
            }
        }
        .article-body h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 30px;
            font-weight: 700;
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 16px;
            margin: 42px 0 18px;
        }
        .article-body h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--accent2);
            margin: 30px 0 12px;
        }
        .article-body h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin: 22px 0 8px;
        }
        .article-body p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px 28px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body img {
            max-width: 100%;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
        }
        .article-body figure {
            margin: 20px 0;
            text-align: center;
        }
        .article-body figcaption {
            font-size: 13px;
            color: #777;
            margin-top: 6px;
            font-style: italic;
        }
        .info-box {
            background: #f0f4ff;
            border-left: 4px solid var(--accent2);
            padding: 14px 18px;
            border-radius: 8px;
            margin: 20px 0;
            font-size: 15px;
        }
        .stat-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .stat-item {
            background: var(--primary);
            color: var(--white);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .stat-item .num {
            font-size: 32px;
            font-weight: 800;
            font-family: 'Rajdhani', sans-serif;
            color: var(--gold);
        }
        .stat-item .label {
            font-size: 13px;
            opacity: .8;
            margin-top: 5px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, .04);
        }
        .widget h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .widget ul {
            list-style: none;
            padding: 0;
        }
        .widget li {
            margin-bottom: 10px;
        }
        .widget li a {
            color: var(--text);
            font-weight: 500;
            font-size: 14px;
            display: block;
            padding: 6px 10px;
            border-radius: 6px;
            transition: .25s;
        }
        .widget li a:hover {
            background: #f0f0f5;
            color: var(--accent);
            transform: translateX(2px);
        }
        .review-section {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            margin: 40px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
        }
        .review-section h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--primary);
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 24px;
            margin: 10px 0 18px;
            color: #ccc;
            cursor: pointer;
        }
        .score-stars i.hover,
        .score-stars i.active {
            color: var(--gold);
        }
        .review-section form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .review-section form input,
        .review-section form textarea,
        .review-section form select {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            width: 100%;
        }
        .review-section form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .review-section form button {
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background .3s;
            align-self: flex-start;
        }
        .review-section form button:hover {
            background: #c5334e;
        }
        footer {
            background: var(--primary);
            color: #ccc;
            padding: 40px 20px 20px;
        }
        .footer-grid {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            padding-bottom: 20px;
        }
        .footer-grid h4 {
            color: var(--white);
            font-size: 16px;
            margin-bottom: 10px;
            font-family: 'Rajdhani', sans-serif;
        }
        .footer-grid a {
            color: #aaa;
            font-size: 13px;
            display: block;
            margin-bottom: 6px;
        }
        .footer-grid a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, .1);
            text-align: center;
            padding-top: 18px;
            font-size: 13px;
            color: #777;
            max-width: 1200px;
            margin: auto;
        }
        friend-link {
            display: block;
            padding: 14px 18px;
            background: rgba(255, 255, 255, .04);
            border-radius: 8px;
            font-size: 13px;
            color: #aaa;
            line-height: 1.8;
            max-width: 1200px;
            margin: 10px auto 0;
        }
        friend-link a {
            color: #aaa;
            margin-right: 10px;
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .btn-top {
            position: fixed;
            right: 20px;
            bottom: 20px;
            background: var(--accent);
            color: var(--white);
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            font-size: 18px;
            cursor: pointer;
            z-index: 99;
            box-shadow: 0 4px 15px rgba(233, 69, 96, .4);
            transition: .3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-top:hover {
            transform: translateY(-3px);
            background: #c5334e;
        }
        @media(max-width:768px) {
            .article-body h2 {
                font-size: 24px;
            }
            .article-body h3 {
                font-size: 19px;
            }
            .article-body {
                padding: 18px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
            }
        }
