* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d1a;
            color: #f0ece4;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #ffec8b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1f 100%);
            border-bottom: 3px solid #ffd700;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(255, 215, 0, 0.08);
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #ffd700, #ffb300);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
            font-family: 'Georgia', serif;
        }
        .my-logo small {
            font-size: 0.75rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .my-logo a {
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffd700;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 215, 0, 0.08);
        }
        .nav-menu {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e0dcd4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #ffd700;
            border-bottom-color: #ffd700;
            text-decoration: none;
        }
        .nav-menu .active {
            color: #ffd700;
            border-bottom-color: #ffd700;
        }
        .breadcrumb {
            background: rgba(255, 215, 0, 0.04);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.06);
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            font-size: 0.85rem;
        }
        .breadcrumb ul li+li::before {
            content: "›";
            color: #ffd700;
            margin-right: 14px;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #c0b8a8;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb .current {
            color: #ffd700;
            font-weight: 600;
        }
        .hero {
            background: radial-gradient(ellipse at center, #1e1e3a, #0a0a14);
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 2px solid rgba(255, 215, 0, 0.1);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffd700, #ffb300, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 18px;
            color: #ccc6ba;
        }
        .hero .badge {
            display: inline-block;
            background: #ffd700;
            color: #0d0d1a;
            padding: 6px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .hero .last-updated {
            margin-top: 20px;
            font-size: 0.85rem;
            color: #999;
        }
        .search-section {
            background: #14142a;
            padding: 30px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.05);
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #333;
            border-radius: 40px;
            background: #1a1a2e;
            color: #f0ece4;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.06);
        }
        .search-form button {
            padding: 14px 34px;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #ffd700, #e6a800);
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
        }
        .main-content {
            padding: 50px 0 60px;
        }
        .main-content h2 {
            font-size: 2rem;
            color: #ffd700;
            margin-top: 60px;
            margin-bottom: 18px;
            border-bottom: 2px solid rgba(255, 215, 0, 0.1);
            padding-bottom: 10px;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #f0e6d0;
            margin-top: 40px;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #e0d4be;
            margin-top: 28px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #d8d2c8;
            font-size: 1.05rem;
        }
        .main-content p strong {
            color: #ffd700;
            font-weight: 700;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 24px 28px;
            color: #d8d2c8;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .feature-box {
            background: rgba(255, 215, 0, 0.04);
            border-left: 4px solid #ffd700;
            padding: 20px 28px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .feature-box p:last-child {
            margin-bottom: 0;
        }
        .main-content .img-wrapper {
            margin: 30px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            background: #1a1a2e;
        }
        .main-content .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .main-content .img-wrapper figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #aaa;
            background: #14142a;
            text-align: center;
            font-style: italic;
        }
        .main-content .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px;
            margin: 20px 0 30px;
            list-style: none;
            margin-left: 0;
        }
        .main-content .link-list li {
            background: rgba(255, 215, 0, 0.03);
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 215, 0, 0.08);
            transition: 0.2s;
        }
        .main-content .link-list li:hover {
            background: rgba(255, 215, 0, 0.07);
            border-color: rgba(255, 215, 0, 0.2);
        }
        .main-content .link-list a {
            font-weight: 500;
        }
        .feedback-section {
            background: #14142a;
            padding: 40px 0;
            border-top: 1px solid rgba(255, 215, 0, 0.06);
            border-bottom: 1px solid rgba(255, 215, 0, 0.06);
            margin-top: 50px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .feedback-card {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 28px 30px;
            border: 1px solid rgba(255, 215, 0, 0.06);
        }
        .feedback-card h3 {
            color: #ffd700;
            margin-bottom: 16px;
            font-size: 1.3rem;
        }
        .feedback-card label {
            display: block;
            margin: 12px 0 6px;
            font-weight: 500;
            color: #ccc6ba;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #333;
            border-radius: 10px;
            background: #0d0d1a;
            color: #f0ece4;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #ffd700;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            margin-top: 16px;
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            background: linear-gradient(135deg, #ffd700, #e6a800);
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(255, 215, 0, 0.2);
        }
        .feedback-card .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            margin: 6px 0 4px;
            color: #444;
            cursor: pointer;
        }
        .feedback-card .star-rating i {
            transition: 0.2s;
        }
        .feedback-card .star-rating i.active,
        .feedback-card .star-rating i:hover {
            color: #ffd700;
        }
        .footer {
            background: #0a0a14;
            padding: 50px 0 30px;
            border-top: 3px solid rgba(255, 215, 0, 0.08);
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer h4 {
            color: #ffd700;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer p,
        .footer a {
            color: #aaa;
            font-size: 0.95rem;
        }
        .footer a:hover {
            color: #ffd700;
        }
        .footer .friend-links {
            list-style: none;
            margin-left: 0;
        }
        .footer .friend-links li {
            margin-bottom: 8px;
        }
        .footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 215, 0, 0.06);
            padding-top: 24px;
            margin-top: 20px;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }
        .footer .copyright strong {
            color: #ccc;
        }
        friend-link {
            display: block;
        }
        @media (max-width: 900px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 18px 0 6px;
                border-top: 1px solid rgba(255, 215, 0, 0.06);
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                width: 100%;
                border-bottom: 1px solid rgba(255, 215, 0, 0.04);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content h2 {
                font-size: 1.6rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .footer .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .search-form input {
                min-width: 160px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb ul {
                font-size: 0.75rem;
                gap: 4px 10px;
            }
            .feedback-card {
                padding: 20px;
            }
        }
        html {
            scroll-padding-top: 80px;
        }
        ::selection {
            background: #ffd700;
            color: #0d0d1a;
        }
