*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --green: #138808;
            --saffron: #FF9933;
            --blue: #000080;
            --dark: #0a1628;
            --light: #f8f9fc;
            --grey: #f0f2f5;
            --text: #1e2a38;
            --white: #ffffff;
            --accent: #e65c00;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.7;
        }
        a {
            color: var(--blue);
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .site-header {
            background: linear-gradient(135deg, var(--green) 0%, #1a8a1a 50%, #0c6e0c 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.04em;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #fff;
        }
        .my-logo a {
            color: #fff;
            text-decoration: none;
        }
        .my-logo span.smalllogo {
            font-size: .7rem;
            font-weight: 300;
            display: block;
            letter-spacing: .2em;
            text-transform: uppercase;
            opacity: .85;
        }
        .nav-links {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f0fdf4;
            padding: 6px 12px;
            border-radius: 100px;
            font-size: .88rem;
            font-weight: 500;
            background: rgba(255, 255, 255, .08);
            transition: all .2s;
        }
        .nav-links a:hover {
            background: #ff9933;
            color: #0b2f0b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #fff;
            cursor: pointer;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #e9ecef;
            padding: 10px 0;
        }
        .breadcrumb {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            font-size: .85rem;
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li+li:before {
            content: " › ";
            color: #999;
            padding: 0 5px;
        }
        .breadcrumb a {
            color: var(--green);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .active {
            color: #6c757d;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 30px;
            padding: 30px 24px;
        }
        .main-content {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .04);
            padding: 30px 34px;
            overflow: hidden;
        }
        .sidebar {
            background: transparent;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .card-side {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
            padding: 20px;
        }
        h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            color: #11223a;
            margin-bottom: 12px;
            font-weight: 800;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 42px;
            margin-bottom: 14px;
            color: #0b2340;
            border-left: 5px solid var(--saffron);
            padding-left: 14px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 30px;
            margin-bottom: 10px;
            color: #2a3b55;
            font-weight: 700;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 22px;
            margin-bottom: 8px;
            color: #3a4a62;
            font-weight: 600;
        }
        p {
            margin-bottom: 16px;
            font-size: .98rem;
        }
        ul,
        ol {
            margin-left: 24px;
            margin-bottom: 16px;
        }
        li {
            margin-bottom: 6px;
        }
        .lead {
            font-size: 1.1rem;
            font-weight: 500;
            color: #3d4d5c;
        }
        .embed-responsive {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 14px;
            overflow: hidden;
            background: #0b0f19;
            margin: 20px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
        }
        .embed-responsive img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .embed-caption {
            text-align: center;
            font-size: .82rem;
            color: #6c757d;
            padding: 8px;
            font-style: italic;
        }
        .highlight-box {
            background: #f0fbff;
            border-left: 4px solid var(--blue);
            border-radius: 8px;
            padding: 18px 20px;
            margin: 24px 0;
            font-size: .96rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 14px;
            margin: 22px 0;
        }
        .stat-card {
            background: #f0f4fc;
            border-radius: 12px;
            text-align: center;
            padding: 18px 10px;
            border-bottom: 3px solid var(--green);
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.1;
        }
        .stat-card .label {
            font-size: .78rem;
            text-transform: uppercase;
            color: #5e6e82;
            letter-spacing: .08em;
            margin-top: 6px;
        }
        .signature {
            font-weight: 600;
            color: var(--accent);
        }
        .info-icon {
            margin-right: 6px;
            color: var(--green);
        }
        .search-block {
            background: linear-gradient(120deg, #e6f4ea, #f1f9f3);
            border-radius: 14px;
            padding: 20px 22px;
            margin-top: 30px;
        }
        .search-block h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .search-form input[type="search"] {
            flex: 1;
            min-width: 200px;
            border: 2px solid #d0dfd3;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 1rem;
            outline: none;
        }
        .search-form input[type="search"]:focus {
            border-color: var(--green);
        }
        .search-form button {
            background: var(--green);
            border: none;
            border-radius: 50px;
            color: #fff;
            padding: 10px 24px;
            font-weight: 600;
            font-size: .95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #0f6f0f;
        }
        .interaction-block {
            background: #fafcff;
            border: 1px solid #e0e7ef;
            border-radius: 14px;
            padding: 24px;
            margin-top: 28px;
        }
        .interaction-block h3 {
            margin-bottom: 12px;
        }
        .rating-stars {
            font-size: 1.1rem;
            color: #ffc107;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .comment-textarea {
            width: 100%;
            border: 2px solid #dde3ec;
            border-radius: 12px;
            padding: 12px;
            font-size: .95rem;
            resize: vertical;
            min-height: 100px;
            margin: 10px 0;
        }
        .btn-submit {
            background: var(--blue);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: .2s;
        }
        .btn-submit:hover {
            background: var(--accent);
        }
        .btn-score {
            background: #28a745;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
        }
        .btn-score:hover {
            background: #1e7e34;
        }
        .card-side h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-top: 0;
        }
        .side-link-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .side-link-list li {
            padding: 5px 0;
            border-bottom: 1px dashed #e4e4ef;
            font-size: .88rem;
        }
        .side-link-list li a {
            color: #0b3d6f;
        }
        .side-link-list li a:hover {
            color: #ff6a00;
        }
        .side-link-list i {
            margin-right: 5px;
            color: var(--green);
            font-size: .7rem;
        }
        .site-footer {
            background: #0f1e30;
            color: #b0c2d0;
            margin-top: 50px;
            padding: 30px 0 0;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 24px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .footer-copy {
            border-top: 1px solid #1d3040;
            text-align: center;
            font-size: .85rem;
            padding: 18px 10px;
            color: #8ba3b6;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            background: #1c2e44;
            border-radius: 10px;
            padding: 16px 18px;
            margin-bottom: 12px;
            font-size: .86rem;
            align-items: center;
        }
        .friend-link a {
            color: #9fcaf0;
            text-decoration: none;
            border-bottom: 1px dotted #ffffff50;
            padding: 3px 0;
        }
        .friend-link a:hover {
            color: #ffc107;
        }
        .friend-link span.footer-heading {
            font-weight: 700;
            color: #fff;
            font-size: .9rem;
            border-right: 1px solid #ffffff20;
            padding-right: 12px;
        }
        @media(max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
                padding: 20px 16px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
        }
        @media(max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0;
                gap: 10px;
                border-top: 1px solid rgba(255, 255, 255, .1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .main-content {
                padding: 18px 16px;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .breadcrumb {
                padding: 0 16px;
                overflow-x: auto;
                white-space: nowrap;
            }
        }
        @media(max-width: 480px) {
            .main-content {
                padding: 14px 12px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            h2 {
                font-size: 1.2rem;
                padding-left: 10px;
                border-left-width: 4px;
            }
        }
        .table-wrapper {
            overflow-x: auto;
            margin: 18px 0;
        }
        table {
            border-collapse: collapse;
            width: 100%;
            font-size: .9rem;
        }
        th,
        td {
            border: 1px solid #e2e7ee;
            padding: 10px 12px;
            text-align: left;
        }
        th {
            background: #edf2f8;
            font-weight: 700;
        }
        .highlight-box p {
            margin: 0;
        }
