        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0c0c0c;
            color: #e0e0e0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.3s ease, border-color 0.3s ease;
            border-bottom: 1px solid transparent;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd57;
            border-bottom-color: #f5c518;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 0.75rem 0;
            border-bottom: 3px solid #f5c518;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #f5c518;
            text-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
            border: none;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffdd57;
            border: none;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #fff;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 1px;
            color: #aaa;
            display: block;
            text-transform: lowercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c518;
            color: #f5c518;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .nav-toggle:hover {
            background: rgba(245, 197, 24, 0.15);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.45rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #ddd;
            border: none;
            transition: background 0.3s ease, color 0.3s ease;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #f5c518;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a:focus-visible::after {
            width: 60%;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(245, 197, 24, 0.1);
            color: #f5c518;
            border: none;
        }
        .main-nav a.active {
            color: #f5c518;
            background: rgba(245, 197, 24, 0.12);
        }
        .breadcrumb {
            background: #1a1a2e;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2a4a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: '/';
            margin-right: 0.6rem;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
            border: none;
        }
        .breadcrumb a:hover {
            color: #f5c518;
            border: none;
        }
        .breadcrumb .current {
            color: #f5c518;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 40%, #0f3460 100%);
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 2px solid #f5c51820;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(245, 197, 24, 0.03) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #f5c518;
            text-shadow: 0 4px 30px rgba(245, 197, 24, 0.25);
            margin-bottom: 0.75rem;
            position: relative;
        }
        .hero p {
            font-size: 1.15rem;
            color: #bbb;
            max-width: 700px;
            margin: 0 auto 1.25rem;
            position: relative;
        }
        .hero .last-update {
            font-size: 0.85rem;
            color: #888;
            display: block;
            margin-top: 0.5rem;
        }
        .hero .last-update i {
            margin-right: 0.35rem;
        }
        .search-form {
            display: flex;
            max-width: 520px;
            margin: 1.25rem auto 0;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #f5c51840;
            transition: border-color 0.3s ease;
            background: #1a1a2e;
        }
        .search-form:focus-within {
            border-color: #f5c518;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #777;
        }
        .search-form button {
            padding: 0.8rem 1.6rem;
            background: #f5c518;
            border: none;
            color: #0c0c0c;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffdd57;
        }
        .main-content {
            flex: 1;
            padding: 2.5rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body article {
            background: #121218;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            border: 1px solid #2a2a3e;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .content-body h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c518;
            margin: 2.2rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a2a3e;
            letter-spacing: 0.5px;
        }
        .content-body h2:first-child {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.45rem;
            font-weight: 700;
            color: #ffdd57;
            margin: 1.6rem 0 0.8rem 0;
            padding-left: 0.5rem;
            border-left: 4px solid #f5c518;
        }
        .content-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e8e8e8;
            margin: 1.2rem 0 0.6rem 0;
        }
        .content-body p {
            margin-bottom: 1rem;
            color: #ccc;
        }
        .content-body strong {
            color: #fff;
            font-weight: 700;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
            color: #ccc;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .content-body .feature-box {
            background: #1a1a2e;
            border-left: 4px solid #f5c518;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .content-body .feature-box p:last-child {
            margin-bottom: 0;
        }
        .content-image {
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1a1a2e;
            border: 1px solid #2a2a4a;
        }
        .content-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #1a1a2e;
            display: block;
        }
        .content-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #999;
            font-style: italic;
            background: #0c0c0c;
            border-top: 1px solid #2a2a4a;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-card {
            background: #121218;
            border-radius: 14px;
            padding: 1.4rem 1.5rem;
            border: 1px solid #2a2a3e;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #f5c518;
            margin-bottom: 0.8rem;
            padding-bottom: 0.4rem;
            border-bottom: 1px solid #2a2a4a;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card a {
            color: #bbb;
            border: none;
            font-size: 0.9rem;
            display: block;
            padding: 0.3rem 0;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }
        .sidebar-card a:hover {
            color: #f5c518;
            padding-left: 6px;
            border: none;
        }
        .sidebar-card a i {
            width: 1.2rem;
            color: #f5c51880;
        }
        .comment-section {
            margin-top: 2.5rem;
            background: #121218;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            border: 1px solid #2a2a3e;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .comment-section h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f5c518;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a2a3e;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #2a2a4a;
            border-radius: 10px;
            background: #0c0c0c;
            color: #e0e0e0;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }
        .comment-form textarea:focus {
            border-color: #f5c518;
            outline: none;
        }
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #2a2a4a;
            border-radius: 10px;
            background: #0c0c0c;
            color: #e0e0e0;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }
        .comment-form input:focus {
            border-color: #f5c518;
            outline: none;
        }
        .comment-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 0.8rem 0;
        }
        .comment-form button {
            padding: 0.7rem 2rem;
            background: #f5c518;
            border: none;
            border-radius: 10px;
            color: #0c0c0c;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover {
            background: #ffdd57;
            transform: translateY(-1px);
        }
        .rating-section {
            margin-top: 1.5rem;
            background: #121218;
            border-radius: 16px;
            padding: 1.8rem 2.2rem;
            border: 1px solid #2a2a3e;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .rating-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #f5c518;
            margin-bottom: 0.8rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s ease;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f5c518;
            transform: scale(1.1);
        }
        .rating-form select {
            padding: 0.6rem 1rem;
            border: 1px solid #2a2a4a;
            border-radius: 10px;
            background: #0c0c0c;
            color: #e0e0e0;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }
        .rating-form select:focus {
            border-color: #f5c518;
            outline: none;
        }
        .rating-form button {
            padding: 0.6rem 1.6rem;
            background: #f5c518;
            border: none;
            border-radius: 10px;
            color: #0c0c0c;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-left: 0.8rem;
        }
        .rating-form button:hover {
            background: #ffdd57;
        }
        friend-link {
            display: block;
            background: #121218;
            border-radius: 14px;
            padding: 1.5rem 2rem;
            border: 1px solid #2a2a3e;
            margin-top: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        friend-link h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5c518;
            margin-bottom: 0.8rem;
            padding-bottom: 0.4rem;
            border-bottom: 1px solid #2a2a4a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        friend-link li {
            margin-bottom: 0;
        }
        friend-link a {
            color: #bbb;
            border: none;
            font-size: 0.9rem;
            padding: 0.2rem 0;
            transition: color 0.3s ease;
        }
        friend-link a:hover {
            color: #f5c518;
            border: none;
        }
        .site-footer {
            background: #0a0a0a;
            border-top: 2px solid #1a1a2e;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            color: #888;
            margin-top: 1rem;
        }
        .site-footer .copyright strong {
            color: #f5c518;
        }
        .site-footer .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            margin-bottom: 0.8rem;
        }
        .site-footer .footer-links a {
            color: #999;
            font-size: 0.85rem;
            border: none;
        }
        .site-footer .footer-links a:hover {
            color: #f5c518;
            border: none;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                border-radius: 12px;
                padding: 0.8rem;
                margin-top: 0.5rem;
                border: 1px solid #2a2a4a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.6rem 1rem;
                border-radius: 6px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-body article {
                padding: 1.2rem 1rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem 1rem;
            }
            .comment-form .form-row {
                grid-template-columns: 1fr;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .search-form {
                max-width: 100%;
            }
            friend-link {
                padding: 1rem 1.2rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
                letter-spacing: 1px;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .header-inner {
                gap: 0.5rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: #f5c518;
            color: #0c0c0c;
            padding: 0.5rem 1rem;
            font-weight: 700;
            z-index: 10000;
            border-radius: 0 0 8px 0;
            border: none;
        }
        .skip-link:focus {
            top: 0;
        }
