* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0e14;
            color: #e6e9ee;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #7ec8f0;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b3e0ff;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #141a24;
            border-bottom: 2px solid #2c3a4a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c040, #d98c2e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            font-family: 'Segoe UI Black', sans-serif;
            text-shadow: 0 0 12px rgba(249, 188, 50, 0.2);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3e5266;
            color: #e6e9ee;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2a36;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 10px 0 6px;
            font-size: 13px;
            color: #8899aa;
        }
        .breadcrumb a {
            color: #7ec8f0;
        }
        .breadcrumb span {
            color: #b0c4d8;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(28px, 5vw, 52px);
            font-weight: 900;
            background: linear-gradient(135deg, #f6d365, #fda085);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 18px;
            color: #b0c4d8;
            max-width: 800px;
            margin: 0 auto 16px;
        }
        .hero .meta-info {
            font-size: 14px;
            color: #7a8a9a;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero .meta-info i {
            margin-right: 6px;
        }
        .search-wrap {
            max-width: 600px;
            margin: 24px auto 32px;
            display: flex;
            background: #1c2632;
            border-radius: 40px;
            border: 1px solid #2c3a4a;
            overflow: hidden;
            transition: 0.3s;
        }
        .search-wrap:focus-within {
            border-color: #f0c040;
            box-shadow: 0 0 20px rgba(240, 192, 64, 0.15);
        }
        .search-wrap input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 14px 22px;
            color: #e6e9ee;
            font-size: 16px;
            outline: none;
        }
        .search-wrap input::placeholder {
            color: #5a6a7a;
        }
        .search-wrap button {
            background: #f0c040;
            border: none;
            padding: 0 28px;
            color: #0b0e14;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-wrap button:hover {
            background: #e0b030;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 40px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 16px 0 8px;
            }
            nav.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
        }
        .main-content h2 {
            font-size: 32px;
            font-weight: 800;
            color: #f0c040;
            margin: 48px 0 16px;
            border-left: 6px solid #f0c040;
            padding-left: 18px;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: #d4e2f0;
            margin: 32px 0 12px;
        }
        .main-content h4 {
            font-size: 20px;
            font-weight: 600;
            color: #b0c8e0;
            margin: 24px 0 8px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #d0d8e0;
            font-size: 17px;
        }
        .main-content strong {
            color: #f6e6b0;
            font-weight: 700;
        }
        .main-content ul,
        .main-content ol {
            margin: 0 0 20px 24px;
            color: #c8d4e0;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .featured-img {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1a2430;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .featured-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-img figcaption {
            padding: 12px 18px;
            font-size: 14px;
            color: #8899aa;
            background: #141c26;
            font-style: italic;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted #7ec8f0;
        }
        .blockquote-crash {
            background: #1a2432;
            border-left: 6px solid #f0c040;
            padding: 20px 24px;
            margin: 28px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d8e8;
        }
        .sidebar {
            background: #141c28;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2a3a4a;
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 20px;
            color: #f0c040;
            margin-bottom: 16px;
            border-bottom: 1px solid #2a3a4a;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar li a {
            display: block;
            padding: 8px 12px;
            background: #1e2a38;
            border-radius: 8px;
            font-size: 14px;
            transition: 0.2s;
            border-left: 3px solid transparent;
        }
        .sidebar li a:hover {
            background: #263648;
            border-left-color: #f0c040;
            text-decoration: none;
        }
        .interaction-area {
            margin: 48px 0;
            padding: 28px 24px;
            background: #141c28;
            border-radius: 16px;
            border: 1px solid #2a3a4a;
        }
        .interaction-area h3 {
            color: #f0c040;
            font-size: 24px;
            margin-bottom: 20px;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 32px;
            color: #4a5a6a;
            cursor: pointer;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f0c040;
            transform: scale(1.15);
        }
        .rating-stars i.selected {
            color: #f0c040;
        }
        .comment-form textarea {
            width: 100%;
            background: #1a2634;
            border: 1px solid #2a3a4a;
            border-radius: 12px;
            padding: 14px 18px;
            color: #e6e9ee;
            font-size: 15px;
            min-height: 100px;
            resize: vertical;
            transition: 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #f0c040;
            outline: none;
        }
        .comment-form .btn-row {
            display: flex;
            gap: 16px;
            margin-top: 14px;
            flex-wrap: wrap;
        }
        .btn {
            background: #f0c040;
            border: none;
            color: #0b0e14;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 15px;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #e0b030;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: #f0c040;
            color: #0b0e14;
        }
        footer {
            background: #0d121c;
            border-top: 2px solid #1e2a38;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 28px;
        }
        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        footer h4 {
            color: #f0c040;
            font-size: 18px;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            font-size: 14px;
            color: #8a9aaa;
        }
        footer a:hover {
            color: #b0d0f0;
        }
        friend-link {
            display: block;
            padding: 16px 0 8px;
            border-top: 1px solid #1e2a38;
            margin-top: 16px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 16px 8px 0;
            font-size: 14px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a2430;
            font-size: 13px;
            color: #5a6a7a;
        }
        @media (max-width: 600px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 26px;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-wrap button {
                padding: 12px;
                justify-content: center;
            }
            .rating-stars {
                font-size: 28px;
            }
            .sidebar {
                position: static;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2c3a4a;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3e5266;
        }
        .last-updated {
            display: inline-block;
            background: #1a2634;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 13px;
            color: #8a9aaa;
        }
