* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0b0e;
            color: #e0e0e0;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #ff6ec7;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffb3e0;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(255, 110, 199, 0.15);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
            border-bottom: 2px solid #ff6ec733;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6ec7, #ffb86c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-style: italic;
        }
        .my-logo:hover {
            background: linear-gradient(135deg, #ffb3e0, #ffd9a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            display: block;
            -webkit-text-fill-color: #888;
            letter-spacing: 1px;
            font-style: normal;
            font-weight: 300;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #ff6ec7;
            color: #ff6ec7;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #ff6ec722;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #ccc;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #ff6ec7;
            border-bottom-color: #ff6ec7;
            text-decoration: none;
        }
        .breadcrumb {
            background: #12121c;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #222;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff6ec7;
        }
        .breadcrumb span {
            color: #ff6ec7;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6ec7, #ffb86c, #6ec7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            margin-bottom: 24px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffb86c;
            margin: 56px 0 20px;
            border-left: 6px solid #ff6ec7;
            padding-left: 20px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f0e6d0;
            margin: 36px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c0b8d0;
            margin: 28px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d0d8;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #f0e0f0;
            font-weight: 400;
            border-left: 4px solid #ff6ec7;
            padding-left: 24px;
            margin-bottom: 32px;
        }
        .highlight {
            background: linear-gradient(120deg, #ff6ec722, #ffb86c22);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }
        .card {
            background: #16161f;
            border: 1px solid #2a2a3a;
            border-radius: 16px;
            padding: 24px;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(255, 110, 199, 0.12);
            border-color: #ff6ec744;
        }
        .card i {
            font-size: 2rem;
            color: #ff6ec7;
            margin-bottom: 12px;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .card p {
            font-size: 0.95rem;
            color: #b0b0c0;
        }
        .featured-image {
            margin: 40px 0;
            border-radius: 16px;
            overflow: hidden;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #888;
            margin-top: 12px;
            font-style: italic;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            background: #12121c;
            padding: 20px 24px;
            border-radius: 12px;
            border: 1px solid #2a2a3a;
            margin: 32px 0;
        }
        .link-list a {
            font-size: 0.95rem;
            color: #b0c0ff;
        }
        .link-list a:hover {
            color: #ff6ec7;
        }
        .form-section {
            background: #14141e;
            border: 1px solid #2a2a3a;
            border-radius: 16px;
            padding: 32px;
            margin: 48px 0;
        }
        .form-section h2 {
            margin-top: 0;
            border-left-color: #6ec7ff;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: #0b0b12;
            border: 1px solid #333;
            border-radius: 10px;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6ec7;
            box-shadow: 0 0 0 3px #ff6ec722;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            padding: 14px 36px;
            background: linear-gradient(135deg, #ff6ec7, #ff8a5c);
            color: #0b0b0e;
            font-weight: 700;
            font-size: 1.05rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 28px rgba(255, 110, 199, 0.35);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #ff6ec7;
            color: #ff6ec7;
        }
        .btn-outline:hover {
            background: #ff6ec722;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #ffc107;
        }
        .star-rating.active i.active {
            color: #ffc107;
        }
        footer {
            background: #0a0a12;
            border-top: 2px solid #1a1a2e;
            padding: 48px 0 32px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        .footer-grid h4 {
            color: #ffb86c;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
        .footer-grid a {
            display: block;
            color: #999;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #ff6ec7;
        }
        friend-link {
            display: block;
            background: #0f0f1a;
            border: 1px solid #2a2a3a;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 32px 0 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #b0c0ff;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #ff6ec7;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid #1a1a2e;
            color: #666;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #999;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding-top: 16px;
                border-top: 1px solid #2a2a3a;
                margin-top: 12px;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 12px 0;
                border-bottom: 1px solid #1a1a2e;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .lead {
                font-size: 1.1rem;
            }
            .form-section {
                padding: 20px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0b0e;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff6ec744;
            border-radius: 20px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff6ec788;
        }
        .badge {
            display: inline-block;
            background: #ff6ec722;
            color: #ff6ec7;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff6ec744, transparent);
            margin: 48px 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 32px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #12121c;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #222;
        }
        th {
            background: #1a1a2e;
            color: #ffb86c;
            font-weight: 600;
        }
        td {
            color: #c0c0d0;
        }
        .last-update {
            display: inline-block;
            background: #1a1a2e;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #aaa;
            margin-bottom: 20px;
        }
        .last-update i {
            color: #ff6ec7;
            margin-right: 6px;
        }
        .quote-block {
            background: #181824;
            border-left: 6px solid #ff6ec7;
            padding: 24px 28px;
            border-radius: 0 16px 16px 0;
            margin: 32px 0;
            font-style: italic;
            color: #d0c8e0;
        }
        .quote-block cite {
            display: block;
            margin-top: 12px;
            color: #ffb86c;
            font-style: normal;
            font-weight: 500;
        }
