* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f1923;
            color: #ece8e1;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ff7b85;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1a2a3a;
            padding: 16px 0;
            border-bottom: 3px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px rgba(255, 70, 85, 0.3);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ff7b85;
        }
        .my-logo span {
            color: #ece8e1;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #ece8e1;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 70, 85, 0.2);
        }
        .main-nav {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ece8e1;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s ease, color 0.2s ease;
        }
        .main-nav a:hover {
            border-bottom-color: #ff4655;
            color: #ff4655;
            text-decoration: none;
        }
        .main-nav a.active {
            border-bottom-color: #ff4655;
            color: #ff4655;
        }
        .breadcrumb-wrap {
            background: #1a2a3a;
            padding: 10px 0;
            border-bottom: 1px solid #2a3a4a;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.85rem;
            color: #9a9a9a;
        }
        .breadcrumb a {
            color: #9a9a9a;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .breadcrumb .sep {
            color: #555;
        }
        .breadcrumb .current {
            color: #ff4655;
            font-weight: 600;
        }
        .hero {
            padding: 48px 0 32px;
            text-align: center;
            background: linear-gradient(180deg, #0f1923 0%, #1a2a3a 100%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            text-shadow: 0 2px 20px rgba(255, 70, 85, 0.25);
        }
        .hero .subhead {
            font-size: 1.15rem;
            color: #b0b0b0;
            max-width: 720px;
            margin: 0 auto 16px;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #7a7a7a;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: #ff4655;
        }
        .last-updated {
            background: #1a2a3a;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #ccc;
            border: 1px solid #2a3a4a;
        }
        .content-wrap {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ff4655;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a3a4a;
            position: relative;
        }
        .main-content h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #ff4655;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ece8e1;
            margin: 32px 0 12px;
            padding-left: 12px;
            border-left: 4px solid #ff4655;
        }
        .main-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #d0c8c0;
            margin: 24px 0 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #d5d0ca;
            font-size: 1rem;
        }
        .main-content p b,
        .main-content p strong {
            color: #fff;
            font-weight: 600;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: #d5d0ca;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #1a2a3a;
            border-left: 4px solid #ff4655;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 8px 8px 0;
        }
        .main-content .highlight-box p {
            margin-bottom: 0;
        }
        .main-content .emoji-big {
            font-size: 1.3rem;
            margin-right: 4px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            background: #1a2a3a;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 8px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 10px 0 4px;
            font-size: 0.85rem;
            color: #9a9a9a;
            font-style: italic;
        }
        .names-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
        }
        .names-table th {
            background: #ff4655;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .names-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #2a3a4a;
            color: #d5d0ca;
        }
        .names-table tr:hover td {
            background: #1a2a3a;
        }
        .names-table .cat {
            font-weight: 600;
            color: #ff4655;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #1a2a3a;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid #2a3a4a;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #ff4655;
            margin-bottom: 16px;
            border-bottom: 1px solid #2a3a4a;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            padding: 6px 0;
            border-bottom: 1px solid #1f2f3f;
        }
        .sidebar-card li a {
            color: #ece8e1;
            transition: color 0.2s;
        }
        .sidebar-card li a:hover {
            color: #ff4655;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 16px 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #2a3a4a;
            background: #0f1923;
            color: #ece8e1;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff4655;
        }
        .search-form button {
            padding: 12px 24px;
            background: #ff4655;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #e03a48;
            transform: scale(1.02);
        }
        .feedback-section {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #2a3a4a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .feedback-card {
            background: #1a2a3a;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid #2a3a4a;
        }
        .feedback-card h3 {
            font-size: 1.2rem;
            color: #ff4655;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 10px 14px;
            border-radius: 6px;
            border: 1px solid #2a3a4a;
            background: #0f1923;
            color: #ece8e1;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #ff4655;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 20px;
            background: #ff4655;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #e03a48;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #555;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #555;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffc107;
        }
        .site-footer {
            background: #0a1219;
            padding: 40px 0 24px;
            border-top: 3px solid #ff4655;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 24px;
            border-bottom: 1px solid #1a2a3a;
        }
        .footer-inner h4 {
            color: #ff4655;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-inner p,
        .footer-inner li {
            color: #9a9a9a;
            font-size: 0.9rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            padding: 4px 0;
        }
        .footer-inner li a {
            color: #9a9a9a;
        }
        .footer-inner li a:hover {
            color: #ff4655;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-bottom: 1px solid #1a2a3a;
            margin-bottom: 16px;
        }
        friend-link a {
            color: #9a9a9a;
            font-size: 0.9rem;
            margin-right: 20px;
        }
        friend-link a:hover {
            color: #ff4655;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #6a6a6a;
        }
        .copyright a {
            color: #6a6a6a;
        }
        .copyright a:hover {
            color: #ff4655;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 16px 0 8px;
                border-top: 1px solid #2a3a4a;
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1rem;
                padding: 8px 0;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .names-table {
                font-size: 0.8rem;
            }
            .names-table th,
            .names-table td {
                padding: 8px 10px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.15rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-muted {
            color: #9a9a9a;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-4 {
            gap: 4px;
        }
        .tag {
            display: inline-block;
            background: #2a3a4a;
            padding: 2px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            color: #ccc;
        }
        .tag:hover {
            background: #ff4655;
            color: #fff;
        }
