        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.7;
            font-size: 16px;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c75e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #c9a84c;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #dbb856;
        }
        header {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
            border-bottom: 3px solid #c9a84c;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f0c75e;
            text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
            letter-spacing: 1px;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo span {
            color: #6ac46a;
        }
        .my-logo small {
            font-size: 0.5rem;
            display: block;
            color: #aaa;
            letter-spacing: 2px;
            font-weight: 300;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 6px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-list li a {
            color: #ddd;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.92rem;
        }
        .nav-list li a:hover {
            background: rgba(201, 168, 76, 0.15);
            color: #f0c75e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #c9a84c;
            color: #f0c75e;
            font-size: 1.6rem;
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(201, 168, 76, 0.15);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #151528;
            padding: 10px 0;
            border-bottom: 1px solid #2a2a4a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            align-items: center;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: #777;
        }
        .breadcrumb a {
            color: #c9a84c;
        }
        .breadcrumb .current {
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3e 50%, #0d0d1a 100%);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 2px solid #2a2a4a;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f0c75e;
            text-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #bbb;
            max-width: 700px;
            margin: 0 auto 20px;
        }
        .hero .last-update {
            font-size: 0.85rem;
            color: #888;
            display: block;
            margin-top: 8px;
        }
        .hero .last-update i {
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        h2 {
            font-size: 2rem;
            color: #f0c75e;
            margin: 40px 0 16px;
            border-bottom: 2px solid #2a2a4a;
            padding-bottom: 8px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.5rem;
            color: #e0d0a0;
            margin: 30px 0 12px;
            font-weight: 600;
        }
        h4 {
            font-size: 1.2rem;
            color: #c9b07a;
            margin: 20px 0 10px;
            font-weight: 500;
        }
        p {
            margin-bottom: 18px;
            color: #d5d5e0;
        }
        .content-area p strong {
            color: #f0e6c0;
        }
        .content-area ul,
        .content-area ol {
            margin: 0 0 20px 24px;
            color: #d5d5e0;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .content-area blockquote {
            border-left: 4px solid #c9a84c;
            padding: 14px 20px;
            margin: 24px 0;
            background: rgba(201, 168, 76, 0.06);
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #ccc;
        }
        .content-area blockquote strong {
            color: #f0c75e;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1a2e;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            padding: 12px 16px;
            font-size: 0.85rem;
            color: #999;
            background: #151528;
            text-align: center;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .card {
            background: #151528;
            padding: 20px 18px;
            border-radius: 14px;
            border: 1px solid #2a2a4a;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #c9a84c;
        }
        .card h4 {
            margin-top: 0;
            color: #f0c75e;
        }
        .card p {
            font-size: 0.92rem;
            color: #bbb;
            margin-bottom: 0;
        }
        .form-block {
            background: #151528;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 32px 0;
            border: 1px solid #2a2a4a;
        }
        .form-block h3 {
            margin-top: 0;
            color: #f0c75e;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #ccc;
            font-size: 0.92rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            background: #0d0d1a;
            border: 1px solid #3a3a5a;
            border-radius: 8px;
            color: #eee;
            font-size: 1rem;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c9a84c;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #c9a84c;
            color: #0d0d1a;
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #dbb856;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.98);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #555;
            transition: color 0.15s;
            cursor: pointer;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c75e;
        }
        .sidebar-box {
            background: #151528;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 28px;
            border: 1px solid #2a2a4a;
        }
        .sidebar-box h3 {
            font-size: 1.2rem;
            color: #f0c75e;
            margin-top: 0;
            margin-bottom: 14px;
            border-bottom: 1px solid #2a2a4a;
            padding-bottom: 8px;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 8px;
        }
        .sidebar-links li a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            border-radius: 6px;
            transition: background 0.2s;
            color: #c9a84c;
        }
        .sidebar-links li a:hover {
            background: rgba(201, 168, 76, 0.1);
            text-decoration: none;
        }
        footer {
            background: #0a0a18;
            border-top: 3px solid #c9a84c;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #f0c75e;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            margin-bottom: 6px;
        }
        .footer-grid ul li a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #f0c75e;
        }
        friend-link {
            display: block;
            padding: 14px 18px;
            background: #151528;
            border-radius: 10px;
            border: 1px solid #2a2a4a;
            margin-bottom: 20px;
            font-size: 0.95rem;
            color: #ccc;
        }
        friend-link a {
            color: #f0c75e;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.85rem;
            border-top: 1px solid #2a2a4a;
            padding-top: 20px;
            margin-top: 10px;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                order: 2;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #151528;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
                border: 1px solid #2a2a4a;
            }
            .nav-list li a {
                display: block;
                padding: 10px 12px;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .form-block {
                padding: 18px 16px;
            }
            .card-grid {
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 12px;
            }
            .form-block {
                padding: 14px 12px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .text-gold {
            color: #f0c75e;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #c9a84c, transparent);
            margin: 30px 0;
            opacity: 0.4;
        }
