        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0d17;
            color: #e4e6f0;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #f0b45a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd78a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.2rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f7ff;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.2rem 0 0.8rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.2rem 0 0.8rem;
            border-left: 6px solid #f0b45a;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.4rem;
            color: #d6daf0;
        }
        p {
            margin: 0 0 1rem;
        }
        .container {
            background: #12162a;
            border-radius: 24px;
            padding: 20px 24px 32px;
            margin: 20px 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .badge {
            display: inline-block;
            background: #f0b45a;
            color: #0b0d17;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .text-gold {
            color: #f0b45a;
        }
        .text-muted {
            color: #9aa0bf;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .flex-center {
            align-items: center;
            justify-content: center;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
        }
        header {
            padding: 16px 0 8px;
            position: sticky;
            top: 0;
            z-index: 100;
            background: #0b0d17;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0b45a, #d4812a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #9aa0bf;
            color: #9aa0bf;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0b45a;
            color: #f0b45a;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0b45a22;
        }
        nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #c8cce8;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            color: #f0b45a;
            border-bottom-color: #f0b45a;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #9aa0bf;
            padding: 12px 0 4px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
        }
        .breadcrumb a {
            color: #c8cce8;
        }
        .breadcrumb a:hover {
            color: #f0b45a;
        }
        .breadcrumb span {
            color: #7a80a0;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 20px 0 10px;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #2e3450;
            background: #0f1329;
            transition: 0.2s;
        }
        .search-box:focus-within {
            border-color: #f0b45a;
            box-shadow: 0 0 0 3px #f0b45a33;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: #e4e6f0;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #6a7090;
        }
        .search-box button {
            background: #f0b45a;
            border: none;
            padding: 0 22px;
            color: #0b0d17;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #ffd078;
        }
        .form-card {
            background: #181e38;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 24px 0;
            border: 1px solid #2a3050;
        }
        .form-card label {
            display: block;
            font-weight: 600;
            margin: 12px 0 4px;
            color: #d6daf0;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #2e3450;
            background: #0f1329;
            color: #e4e6f0;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #f0b45a;
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: #f0b45a;
            border: none;
            color: #0b0d17;
            padding: 12px 36px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 12px;
        }
        .form-card .btn:hover {
            background: #ffd078;
            transform: scale(1.02);
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a3f60;
            cursor: pointer;
        }
        .stars i {
            transition: 0.2s;
        }
        .stars i.active,
        .stars i:hover {
            color: #f0b45a;
        }
        .stars i:hover~i {
            color: #3a3f60;
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            border-top: 2px solid #2a3050;
            margin-top: 32px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 12px;
            background: #1a2040;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #f0b45a22;
            color: #f0b45a;
        }
        footer {
            padding: 24px 0 32px;
            font-size: 0.9rem;
            color: #7a80a0;
            border-top: 1px solid #1e2340;
            margin-top: 20px;
            text-align: center;
        }
        footer a {
            color: #c8cce8;
        }
        footer a:hover {
            color: #f0b45a;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            .container {
                padding: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 4px;
                gap: 4px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 8px 0;
                border-bottom: 1px solid #1e2340;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .search-box {
                max-width: 100%;
            }
            .stars {
                font-size: 1.5rem;
            }
            .form-card {
                padding: 16px 18px;
            }
            friend-link a {
                display: block;
                margin: 6px 0;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .feature-icon {
            font-size: 2.2rem;
            color: #f0b45a;
            margin-right: 12px;
        }
        .card-stat {
            background: #181e38;
            border-radius: 16px;
            padding: 18px 20px;
            border: 1px solid #2a3050;
            transition: 0.2s;
        }
        .card-stat:hover {
            border-color: #f0b45a55;
            transform: translateY(-2px);
        }
        .quote-block {
            background: #181e38;
            border-left: 6px solid #f0b45a;
            padding: 16px 22px;
            border-radius: 0 16px 16px 0;
            margin: 20px 0;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 16px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0f1329;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #1e2444;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            color: #f0b45a;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #1e2444;
        }
        .tag {
            display: inline-block;
            background: #2a3050;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #c8cce8;
        }
