        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-dark: #0b0e14;
            --bg-card: #141a24;
            --bg-card-hover: #1c2535;
            --accent: #f5a623;
            --accent-dim: #c47e10;
            --text-primary: #e8edf5;
            --text-secondary: #9aaec9;
            --text-muted: #5e6f8a;
            --border-color: #2a3444;
            --shadow: 0 8px 24px rgba(0, 0, 0, .6);
            --radius: 12px;
            --font-body: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            --transition: .25s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: #ffc857;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        li {
            margin-bottom: .4rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: .01em;
            color: var(--text-primary);
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: .5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.4rem 0 1rem;
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 .8rem;
            color: var(--accent);
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 .5rem;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }
        strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1620 0%, #1a2535 100%);
            border-bottom: 2px solid var(--border-color);
            padding: .6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: .6rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .08em;
            background: linear-gradient(135deg, var(--accent), #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 166, 35, .15);
            display: inline-flex;
            align-items: center;
            gap: .5rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--accent);
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: .7rem;
            -webkit-text-fill-color: initial;
            color: var(--text-muted);
            letter-spacing: .02em;
            font-weight: 400;
            display: block;
            line-height: 1;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: .9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--border-color);
            color: var(--text-primary);
            font-size: 1.5rem;
            padding: .4rem .8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: var(--bg-card);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: .2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
        }
        .nav-menu li a {
            display: block;
            padding: .5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: .9rem;
            color: var(--text-secondary);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus {
            background: var(--bg-card);
            color: var(--accent);
            text-decoration: none;
        }
        .nav-menu li a.active {
            color: var(--accent);
            background: rgba(245, 166, 35, .1);
        }
        .breadcrumb {
            padding: .8rem 0 .4rem;
            font-size: .85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: .3rem .6rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: .6rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 500;
        }
        .search-box {
            display: flex;
            gap: .4rem;
            max-width: 480px;
            margin: 1.2rem 0 2rem;
        }
        .search-box input {
            flex: 1;
            padding: .7rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-card);
            color: var(--text-primary);
            font-size: .95rem;
            transition: border var(--transition);
            outline: none;
        }
        .search-box input:focus {
            border-color: var(--accent);
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-box button {
            padding: .7rem 1.4rem;
            background: var(--accent);
            border: none;
            border-radius: 8px;
            color: #0b0e14;
            font-weight: 700;
            font-size: .95rem;
            cursor: pointer;
            transition: background var(--transition), transform .15s;
            display: flex;
            align-items: center;
            gap: .5rem;
        }
        .search-box button:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .hero-figure {
            margin: 1.5rem 0 2rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--bg-card);
        }
        .hero-figure img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-bottom: 3px solid var(--accent);
        }
        .hero-figure figcaption {
            padding: .8rem 1.2rem;
            font-size: .9rem;
            color: var(--text-muted);
            font-style: italic;
            background: var(--bg-card);
        }
        .content-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
            transition: box-shadow var(--transition);
        }
        .content-card:hover {
            box-shadow: 0 4px 28px rgba(245, 166, 35, .06);
        }
        .content-card h2:first-child,
        .content-card h3:first-child {
            margin-top: 0;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: .6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0 1.4rem;
        }
        .link-grid li a {
            display: block;
            padding: .4rem .6rem;
            border-radius: 6px;
            background: rgba(245, 166, 35, .04);
            border-left: 3px solid var(--accent-dim);
            font-size: .9rem;
            transition: background var(--transition), padding-left .2s;
        }
        .link-grid li a:hover {
            background: rgba(245, 166, 35, .12);
            padding-left: 1rem;
            text-decoration: none;
        }
        .link-grid li a i {
            margin-right: .5rem;
            font-size: .8rem;
            color: var(--accent);
        }
        .feedback-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feedback-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 1.6rem 1.8rem;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: .6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: .8rem;
            margin-top: .8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: .65rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-dark);
            color: var(--text-primary);
            font-size: .9rem;
            transition: border var(--transition);
            outline: none;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--accent);
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: .7rem 1.5rem;
            background: var(--accent);
            border: none;
            border-radius: 8px;
            color: #0b0e14;
            font-weight: 700;
            font-size: .95rem;
            cursor: pointer;
            transition: background var(--transition);
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffc857;
        }
        .star-rating {
            display: flex;
            gap: .3rem;
            font-size: 1.6rem;
            color: var(--text-muted);
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color var(--transition);
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
        }
        .site-footer {
            background: linear-gradient(135deg, #0b0e14 0%, #141a24 100%);
            border-top: 2px solid var(--border-color);
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-grid h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: .8rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: .4rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: .3rem;
        }
        .footer-grid ul li a {
            font-size: .9rem;
            color: var(--text-secondary);
        }
        .footer-grid ul li a:hover {
            color: var(--accent);
        }
        friend-link {
            display: block;
            margin-top: 1.8rem;
            padding-top: 1.2rem;
            border-top: 1px solid var(--border-color);
            font-size: .85rem;
            color: var(--text-muted);
        }
        friend-link a {
            color: var(--text-secondary);
            margin: 0 .3rem;
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            font-size: .85rem;
            color: var(--text-muted);
        }
        .copyright strong {
            color: var(--text-secondary);
        }
        .last-updated {
            display: inline-block;
            font-size: .85rem;
            color: var(--text-muted);
            background: rgba(245, 166, 35, .06);
            padding: .3rem 1rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            margin-right: .4rem;
            color: var(--accent);
        }
        @media (max-width: 900px) {
            .feedback-forms {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-card);
                border-radius: var(--radius);
                padding: .6rem 0;
                margin-top: .4rem;
                border: 1px solid var(--border-color);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: .6rem 1.2rem;
                white-space: normal;
            }
            .header-inner {
                align-items: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .hero-figure img {
                max-height: 220px;
            }
            .search-box {
                flex-direction: column;
            }
            h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: .6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 .9rem;
            }
            .content-card {
                padding: .9rem .9rem;
            }
            h2 {
                font-size: 1.25rem;
                padding-left: .6rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .feedback-card {
                padding: 1rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: .6rem;
        }
        .text-accent {
            color: var(--accent);
        }
        .pill {
            display: inline-block;
            background: rgba(245, 166, 35, .12);
            color: var(--accent);
            padding: .15rem .8rem;
            border-radius: 20px;
            font-size: .8rem;
            font-weight: 600;
        }
        .section-offset {
            scroll-margin-top: 100px;
        }
        .stat-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin: 1.4rem 0;
        }
        .stat-item {
            background: var(--bg-dark);
            padding: .8rem .6rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
        }
        .stat-item .label {
            font-size: .75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: .04em;
        }
