        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f1a2b;
            color: #e8edf2;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.5rem 0 2rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.5rem;
            border-bottom: 2px solid #2c3e50;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5c542;
            text-shadow: 2px 2px 0 #7f4f1f;
            background: linear-gradient(135deg, #f5c542, #e6a817);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.25s;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #a0b8cc;
            color: #a0b8cc;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.2rem;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-list a:hover {
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f5c542;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            transition: transform 0.2s;
        }
        .hamburger:active {
            transform: scale(0.92);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.7rem 0 0.3rem;
            gap: 0.4rem 0.8rem;
            font-size: 0.9rem;
            color: #8aa0b8;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a7a94;
        }
        .breadcrumb a {
            color: #b0c8dd;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 600;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #e6a817, #d4920b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.6rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto 1.2rem;
            color: #c8dce6;
        }
        .hero .last-update {
            display: inline-block;
            font-size: 0.85rem;
            background: #1e3144;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            color: #b0c8dd;
            border: 1px solid #2c4a62;
        }
        .hero .last-update i {
            margin-right: 0.4rem;
            color: #f5c542;
        }
        section {
            margin: 2.5rem 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c542;
            border-left: 5px solid #e6a817;
            padding-left: 1rem;
            margin: 2.2rem 0 1.2rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e6d5b8;
            margin: 1.8rem 0 0.8rem;
            border-bottom: 1px dashed #2c4a62;
            padding-bottom: 0.3rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c4a8;
            margin: 1.4rem 0 0.6rem;
        }
        p {
            margin-bottom: 1rem;
            color: #dce6ed;
        }
        .highlight {
            background: #1e3144;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            color: #f5c542;
        }
        .key-stat {
            font-weight: 700;
            color: #f5c542;
            font-size: 1.1rem;
        }
        .img-card {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #142233;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .img-card img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .img-card figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #a0b8cc;
            border-top: 1px solid #1e3144;
            font-style: italic;
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }
        .card {
            background: #142233;
            border-radius: 14px;
            padding: 1.5rem;
            border: 1px solid #1e3144;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #f5c542;
        }
        .card h4 {
            margin-top: 0;
            color: #f5c542;
        }
        .card p {
            font-size: 0.95rem;
        }
        .link-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 0.6rem 1.2rem;
        }
        .link-list li::before {
            content: "⚔️";
            margin-right: 0.5rem;
            font-size: 0.85rem;
        }
        .link-list a {
            font-weight: 500;
        }
        .form-block {
            background: #142233;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            border: 1px solid #1e3144;
            margin: 2rem 0;
        }
        .form-block h3 {
            margin-top: 0;
            border-bottom: none;
            color: #f5c542;
        }
        .form-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1rem 0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2c4a62;
            background: #0f1a2b;
            color: #e8edf2;
            font-size: 0.95rem;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f5c542;
        }
        .form-group textarea {
            min-height: 90px;
            flex-basis: 100%;
        }
        .btn {
            background: linear-gradient(135deg, #f5c542, #d4920b);
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            color: #0f1a2b;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 197, 66, 0.3);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .btn i {
            font-size: 1rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #4a6a82;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #4a6a82;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .interview-box {
            background: #0f1a2b;
            border-left: 4px solid #f5c542;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .interview-box .speaker {
            font-weight: 700;
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #1e3144;
            margin-top: 2.5rem;
        }
        friend-link h3 {
            color: #f5c542;
            border-bottom: none;
            margin-bottom: 0.8rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
        }
        friend-link a {
            font-weight: 500;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #1e3144;
            text-decoration: none;
        }
        .site-footer {
            padding: 1.8rem 0 2.5rem;
            text-align: center;
            color: #6a8aa2;
            font-size: 0.9rem;
            border-top: 1px solid #1e3144;
            margin-top: 1.5rem;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
            letter-spacing: 0.3px;
        }
        .site-footer .copyright i {
            color: #f5c542;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .site-header {
                flex-wrap: nowrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1a2b;
                padding: 1rem 0 0.8rem;
                gap: 0.6rem;
                border-top: 1px solid #1e3144;
                margin-top: 0.6rem;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 0.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .form-block {
                padding: 1.2rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .star-rating {
                font-size: 1.4rem;
                justify-content: flex-start;
                direction: ltr;
            }
            .star-rating label {
                direction: ltr;
            }
            .star-rating input:checked~label {
                color: #f5c542;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
            .form-group input,
            .form-group textarea,
            .form-group select {
                flex-basis: 100%;
            }
        }
        @media print {
            .hamburger {
                display: none !important;
            }
            .nav-list {
                display: flex !important;
            }
            .btn {
                background: #ccc !important;
                color: #000 !important;
            }
            body {
                background: #fff;
                color: #222;
            }
            a {
                color: #1a4a7a;
            }
        }
