        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.7;
            color: #1a1a2e;
            background: linear-gradient(180deg, #f9f5f0 0%, #fff8f2 30%, #f5f0ea 100%);
            min-height: 100vh;
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b3e 0%, #1a2a5e 60%, #c8102e 160%);
            padding: 20px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffffff !important;
            text-decoration: none;
            letter-spacing: -1px;
            text-transform: uppercase;
            background: linear-gradient(to right, #fff 30%, #f9c930 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform .3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-style: italic;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            background: #c8102e;
            -webkit-text-fill-color: #fff;
            padding: 10px;
            border-radius: 50%;
            font-size: 1.3rem;
        }
        .header-tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-style: italic;
        }
        .nav-main {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 5px;
        }
        .nav-main a {
            color: #e0e0e0;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: inline-block;
        }
        .nav-main a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #f9c930;
        }
        .nav-main a.nav-active {
            background: #c8102e;
            color: #fff;
            box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
        }
        .hamburger {
            display: none;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.4rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #f1ecf0;
            padding: 12px 30px;
            font-size: 0.87rem;
            border-bottom: 1px solid #e0d6cf;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 6px;
            color: #999;
        }
        .breadcrumb a {
            color: #c8102e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
            padding: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        @media (max-width: 992px) {
            .layout {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            .sidebar {
                display: none;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-main {
                flex-basis: 100%;
                display: none;
                flex-direction: column;
                align-items: stretch;
                margin-top: 12px;
            }
            .nav-main.open {
                display: flex;
            }
            .nav-main a {
                text-align: center;
                padding: 12px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .site-header {
                padding: 15px 20px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 600px) {
            .layout {
                padding: 15px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .header-tagline {
                display: none;
            }
        }
        .content {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
            line-height: 1.8;
        }
        @media (max-width: 600px) {
            .content {
                padding: 20px;
            }
        }
        .content h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            color: #0d1b3e;
            margin-bottom: 12px;
            position: relative;
            padding-bottom: 18px;
            border-bottom: 3px solid #c8102e;
            display: inline-block;
            font-weight: 900;
            letter-spacing: -1px;
        }
        .content h1 i {
            color: #c8102e;
            margin-right: 8px;
        }
        .content h2 {
            font-size: 2rem;
            color: #0d1b3e;
            margin: 40px 0 20px;
            font-weight: 800;
            padding-left: 15px;
            border-left: 5px solid #c8102e;
        }
        .content h3 {
            font-size: 1.4rem;
            color: #1a2a5e;
            margin: 30px 0 15px;
            font-weight: 700;
        }
        .content h4 {
            font-size: 1.1rem;
            color: #333;
            margin: 20px 0 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .content p {
            margin-bottom: 16px;
            color: #333;
            font-size: 1rem;
        }
        .content strong {
            color: #c8102e;
            font-weight: 700;
        }
        .content a {
            color: #c8102e;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: all 0.3s;
        }
        .content a:hover {
            color: #0d1b3e;
            background: rgba(200, 16, 46, 0.08);
            text-decoration: underline;
            padding: 0 3px;
            border-radius: 4px;
        }
        .callout {
            background: linear-gradient(135deg, #fdf6f0, #fef0e6);
            border-left: 5px solid #c8102e;
            padding: 20px 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
            font-size: 1.05rem;
        }
        .callout i {
            font-size: 1.4rem;
            color: #c8102e;
            margin-right: 10px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #0d1b3e, #1a2a5e);
            color: #fff;
            border-radius: 14px;
            padding: 22px 18px;
            text-align: center;
        }
        .stat-card .stat-num {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f9c930;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 0.8rem;
            opacity: 0.9;
            margin-top: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline {
            position: relative;
            padding-left: 35px;
            margin: 20px 0 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #c8102e, #0d1b3e);
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 25px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -29px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #c8102e;
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px #c8102e;
        }
        .timeline-item .time {
            font-weight: 800;
            color: #c8102e;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 4px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.95rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            border-radius: 8px;
            overflow: hidden;
        }
        .data-table th {
            background: linear-gradient(135deg, #0d1b3e, #1a2a5e);
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
            background: #fff;
        }
        .data-table tr:hover td {
            background: #f9f5f0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar-box {
            background: #fff;
            border-radius: 14px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .sidebar-box h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #0d1b3e;
            margin-bottom: 15px;
            border-bottom: 3px solid #c8102e;
            padding-bottom: 8px;
            display: inline-block;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
        }
        .sidebar-links li {
            margin-bottom: 10px;
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: #f9f5f0;
            border-radius: 8px;
            color: #1a1a2e;
            text-decoration: none;
            font-size: 0.92rem;
            transition: all 0.3s;
        }
        .sidebar-links a:hover {
            background: #c8102e;
            color: #fff;
            transform: translateX(4px);
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 0.9rem;
            color: #0d1b3e;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #e0d8d2;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
            background: #fafafc;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c8102e;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
        }
        .btn-primary {
            background: linear-gradient(135deg, #c8102e, #a00d24);
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            justify-content: center;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating-stars i {
            transition: all 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f9c930;
            transform: scale(1.15);
        }
       .rating-stars i.selected {
            color: #f9c930;
        }
        .site-footer {
            background: linear-gradient(135deg, #0d1b3e, #1a2a5e);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 30px 20px;
            margin-top: 40px;
        }
        .site-footer a {
            color: #f9c930;
            text-decoration: none;
        }
        .site-footer a:hover {
            text-decoration: underline;
        }
        .footer-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-col h4 {
            color: #f9c930;
            margin-bottom: 14px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }
        .footer-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin: 15px 0;
        }
        friend-link a {
            color: #f9c930;
            text-decoration: none;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .hero-img {
            width: 100%;
            border-radius: 16px;
            margin: 25px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }
        figure {
            margin: 30px 0;
        }
        figure img {
            width: 100%;
            border-radius: 14px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
        }
        figure figcaption {
            font-size: 0.85rem;
            color: #777;
            text-align: center;
            margin-top: 10px;
            font-style: italic;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            margin-top: 20px;
            border-top: 1px solid #eee;
            padding-top: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .author-box {
            display: flex;
            gap: 15px;
            background: #f9f5f0;
            padding: 20px;
            border-radius: 14px;
            margin: 30px 0;
            align-items: center;
        }
        .author-box img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #c8102e;
        }
        .author-box .author-name {
            font-weight: 700;
            color: #0d1b3e;
            font-size: 1rem;
        }
        .author-box .author-title {
            font-size: 0.85rem;
            color: #666;
        }
        @media (max-width: 768px) {
            .content h1 {
                font-size: 1.9rem;
            }
            .content h2 {
                font-size: 1.4rem;
            }
            .content h3 {
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
                word-break: break-word;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #c8102e;
            color: #fff;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 999;
        }
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
        }
