        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf3;
            line-height: 1.7;
            padding: 0 16px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ff4757;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #ff6b81;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #fff;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.5rem 0 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 0.8rem;
            border-bottom: 2px solid #ff4757;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.6rem;
            color: #ff6b81;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1rem 0 0.4rem;
            color: #ffa502;
        }
        p {
            margin: 0 0 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            flex: 1;
        }
        .site-header {
            background: linear-gradient(145deg, #14181f, #1a1f2b);
            border-radius: 0 0 24px 24px;
            padding: 12px 20px;
            margin-bottom: 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            border-bottom: 3px solid #ff4757;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff4757, #ff6b81);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff4757;
            font-size: 1.8rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #ff4757;
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #ff4757;
            color: #fff;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        .main-nav a {
            color: #c8d0dd;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            color: #ff4757;
            border-bottom-color: #ff4757;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #ff4757;
            border-bottom-color: #ff4757;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            padding: 10px 0 4px;
            color: #9aa4b5;
            list-style: none;
            width: 100%;
            order: 3;
            margin-top: 8px;
            border-top: 1px solid #2a3040;
            padding-top: 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #ff4757;
        }
        .breadcrumb a {
            color: #9aa4b5;
        }
        .breadcrumb a:hover {
            color: #ff4757;
        }
        .breadcrumb .current {
            color: #ff4757;
            font-weight: 600;
        }
        @media (max-width: 840px) {
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding: 16px 0 8px;
                order: 2;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 12px;
                border-bottom: 1px solid #2a3040;
                width: 100%;
            }
            .site-header {
                padding: 12px 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 32px;
            margin: 24px 0;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 24px;
            align-self: start;
            background: #141b24;
            border-radius: 20px;
            padding: 20px 18px;
            border: 1px solid #2a3344;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
                order: 2;
                margin-top: 24px;
            }
        }
        .card {
            background: #151c27;
            border-radius: 20px;
            padding: 24px 22px;
            margin-bottom: 28px;
            border: 1px solid #232d3b;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }
        .card-highlight {
            border-left: 5px solid #ff4757;
            background: #1a232f;
        }
        .badge {
            display: inline-block;
            background: #ff4757;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .emoji-big {
            font-size: 2.2rem;
            display: inline-block;
            margin-right: 8px;
        }
        .featured-image {
            margin: 20px 0 24px;
            border-radius: 16px;
            overflow: hidden;
            background: #0f151e;
            padding: 8px;
            border: 1px solid #2a3344;
        }
        .featured-image img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image figcaption {
            font-size: 0.8rem;
            color: #9aa4b5;
            padding: 10px 6px 4px;
            text-align: center;
            font-style: italic;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #c8d0dd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #2a3344;
            background: #0f151e;
            color: #e8edf3;
            font-size: 1rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff4757;
            box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.25);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ff4757;
            color: #fff;
            font-weight: 700;
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
        }
        .btn:hover {
            background: #e63946;
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(255, 71, 87, 0.35);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #ff4757;
            color: #ff4757;
        }
        .btn-outline:hover {
            background: #ff4757;
            color: #fff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a4455;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffa502;
        }
        .link-list {
            list-style: none;
            padding: 0;
        }
        .link-list li {
            padding: 6px 0;
            border-bottom: 1px solid #1f2835;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #c8d0dd;
        }
        .link-list a:hover {
            color: #ff4757;
            text-decoration: none;
        }
        .link-list i {
            width: 20px;
            color: #ff4757;
        }
        .site-footer {
            background: #10161f;
            border-radius: 24px 24px 0 0;
            padding: 32px 24px 20px;
            margin-top: 40px;
            border-top: 3px solid #ff4757;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid h4 {
            color: #ff4757;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            padding: 4px 0;
        }
        .footer-grid a {
            color: #9aa4b5;
        }
        .footer-grid a:hover {
            color: #ff4757;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #1f2835;
            color: #6a7a8e;
            font-size: 0.85rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
        }
        friend-link a {
            color: #ff4757;
            font-weight: 500;
        }
        .text-muted {
            color: #9aa4b5;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .gap-sm {
            gap: 8px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7a8e;
            display: block;
            margin: 8px 0 16px;
        }
        @media (prefers-reduced-motion: no-preference) {
            .fade-up {
                opacity: 0;
                transform: translateY(24px);
                transition: opacity 0.6s ease, transform 0.6s ease;
            }
            .fade-up.visible {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .widget {
            margin-bottom: 24px;
        }
        .widget h3 {
            font-size: 1.1rem;
            color: #ffa502;
            border-bottom: 1px solid #2a3344;
            padding-bottom: 6px;
            margin-top: 0;
        }
        @media (max-width: 480px) {
            .card {
                padding: 16px 14px;
            }
            .site-header {
                padding: 10px 12px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3344;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff4757;
        }
        @media print {
            .site-header,
            .site-footer,
            .content-sidebar,
            .nav-toggle,
            .breadcrumb {
                display: none !important;
            }
            body {
                background: #fff;
                color: #000;
            }
            .card {
                border: 1px solid #ccc;
                background: #fff;
            }
        }
