:root {
            --primary: #ff6b35;
            --primary-dark: #e55a2b;
            --bg-dark: #0f0f1a;
            --bg-card: #1a1a2e;
            --bg-card-light: #242442;
            --text-main: #e0e0e0;
            --text-bright: #ffffff;
            --text-muted: #a0a0b0;
            --accent-gold: #ffd700;
            --border: #2d2d4a;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.8;
            font-size: 1rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a0a2e 100%);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(255, 107, 53, 0.15);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.8rem 2rem;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(45deg, var(--primary), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-transform: uppercase;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .logo-domain {
            font-size: 0.7rem;
            color: var(--text-muted);
            display: block;
            text-align: right;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-size: 1.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
        }
        .hamburger:hover {
            background: var(--primary);
            color: #fff;
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: var(--text-main);
            font-weight: 600;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        .main-nav a:hover {
            background: var(--primary);
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb-wrap {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.6rem 2rem;
            font-size: 0.85rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .separator {
            margin: 0 0.4rem;
            color: var(--text-muted);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, rgba(15, 15, 26, 0.9), rgba(30, 10, 40, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23101020" width="1200" height="400"/><circle cx="200" cy="200" r="60" fill="%23ff6b35" opacity="0.3"/><circle cx="900" cy="150" r="80" fill="%23ffd700" opacity="0.2"/><path d="M0 300 Q 300 200, 600 320 T 1200 250" stroke="%23ff6b35" stroke-width="2" fill="none" opacity="0.5"/></svg>') center/cover;
            padding: 4rem 2rem;
            text-align: center;
            border-bottom: 2px solid var(--primary);
        }
        .hero h1 {
            font-size: 3.2rem;
            color: var(--text-bright);
            text-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
            font-family: 'Impact', 'Arial Black', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 1rem auto;
        }
        .hero .hero-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .hero-stats .stat {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(4px);
            padding: 0.8rem 1.4rem;
            border-radius: 10px;
            text-align: center;
        }
        .hero-stats .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
        }
        .hero-stats .stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow);
        }
        .card.
card-sub {
            border-left-color: var(--accent-gold);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--text-bright);
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--text-bright);
            margin: 1.2rem 0 0.5rem;
            font-weight: 600;
        }
        .lead {
            font-size: 1.15rem;
            color: var(--text-main);
            font-weight: 300;
        }
        .content-img {
            border-radius: var(--radius);
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            border: 2px solid var(--border);
        }
        .img-caption {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: -1rem;
            margin-bottom: 1.5rem;
        }
        .search-box {
            background: var(--bg-card);
            border-radius: 50px;
            padding: 0.5rem 0.5rem;
            display: flex;
            align-items: center;
            border: 2px solid var(--border);
            transition: var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-bright);
            font-size: 1rem;
            padding: 0.5rem 0.8rem;
        }
        .search-box button {
            background: var(--primary);
            border: none;
            color: #fff;
            border-radius: 50%;
            width: 38px;
            height: 38px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--accent-gold);
            color: #000;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .data-table th {
            background: var(--bg-card-light);
            color: var(--text-bright);
            padding: 0.8rem;
            text-align: left;
            border-bottom: 2px solid var(--primary);
        }
        .data-table td {
            padding: 0.8rem;
            border-bottom: 1px solid var(--border);
        }
        .data-table tr:hover td {
            background: var(--bg-card-light);
        }
        .comment-section, .rating-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem;
            margin-top: 2rem;
        }
        .comment-list {
            list-style: none;
            margin: 1rem 0;
        }
        .comment-list li {
            background: var(--bg-card-light);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 0.8rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin: 0.5rem 0;
            background: var(--bg-card-light);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-bright);
        }
        .comment-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
        }
        .comment-form button:hover {
            background: var(--accent-gold);
            color: #000;
        }
        .stars {
            display: inline-flex;
            gap: 0.2rem;
            font-size: 1.4rem;
            color: var(--text-muted);
        }
        .stars i.active {
            color: var(--accent-gold);
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
            color: var(--accent-gold);
        }
        .site-footer {
            background: #0a0a14;
            border-top: 3px solid var(--primary);
            padding: 2rem 0 0;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-grid h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-grid a {
            display: block;
            color: var(--text-muted);
            padding: 0.3rem 0;
        }
        .footer-grid a:hover {
            color: var(--accent-gold);
        }
        .copyright {
            background: #000;
            text-align: center;
            padding: 1rem;
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        friend-link {
            display: block;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 2rem 0 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem;
            padding: 0.4rem 1rem;
            background: var(--bg-card-light);
            border-radius: 20px;
            color: var(--text-main);
            font-size: 0.85rem;
        }
        friend-link a:hover {
            background: var(--primary);
            color: #fff;
            text-decoration: none;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem 0;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                display: block;
                padding: 0.
7rem 1rem;
                background: var(--bg-card);
                width: 100%;
                text-align: center;
                border-radius: 8px;
            }
            .header-top {
                padding: 0.6rem 1rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .container {
                padding: 0 1rem;
            }
            .card {
                padding: 1.2rem;
            }
            .hero-stats {
                gap: 0.8rem;
            }
            .hero-stats .stat {
                padding: 0.5rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
