* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8eaf0;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #131a24;
            border-radius: 24px;
            padding: 20px 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #2a3a4a;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c842, #f9e076);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(245, 200, 66, 0.2);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: inherit;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        nav {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #2a3a4a;
            color: #f5c842;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #e8eaf0;
            padding: 4px 8px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #9aaab5;
            padding: 12px 0 8px;
            border-bottom: 1px solid #1f2c38;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #b0c4d4;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #f5c842;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f5c842;
            margin: 20px 0 16px;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f5c842;
            margin: 40px 0 16px;
            border-left: 6px solid #f5c842;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #e8d48b;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #d4c088;
            margin: 20px 0 8px;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8899a8;
            margin: 4px 0 20px;
            display: block;
            font-style: italic;
        }
        .featured-image {
            margin: 24px 0 28px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .search-section {
            background: #1a2533;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 32px 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }
        .search-section label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: none;
            border-radius: 40px;
            background: #0b1119;
            color: #e8eaf0;
            font-size: 1rem;
            outline: 2px solid #2a3a4a;
            transition: outline 0.2s;
        }
        .search-section input[type="text"]:focus {
            outline: 2px solid #f5c842;
        }
        .search-section button {
            background: #f5c842;
            color: #0b0e14;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-section button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0 32px;
        }
        .card {
            background: #1a2533;
            border-radius: 18px;
            padding: 22px 24px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #f5c842;
        }
        .card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .card input,
        .card textarea,
        .card select {
            padding: 12px 16px;
            border: none;
            border-radius: 12px;
            background: #0b1119;
            color: #e8eaf0;
            font-size: 0.95rem;
            outline: 2px solid #2a3a4a;
            transition: outline 0.2s;
            width: 100%;
        }
        .card input:focus,
        .card textarea:focus,
        .card select:focus {
            outline: 2px solid #f5c842;
        }
        .card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card button {
            background: #f5c842;
            color: #0b0e14;
            border: none;
            padding: 12px 20px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .card button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #555f6a;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5c842;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            background: #1a2533;
            border-radius: 18px;
            padding: 20px 24px;
            margin: 36px 0 20px;
        }
        friend-link h3 {
            margin-top: 0;
            color: #f5c842;
            font-size: 1.3rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 8px 0 0;
        }
        friend-link li a {
            font-weight: 500;
        }
        footer {
            border-top: 2px solid #2a3a4a;
            padding: 24px 0 16px;
            margin-top: 28px;
            text-align: center;
            font-size: 0.9rem;
            color: #8899a8;
        }
        footer a {
            color: #b0c4d4;
        }
        footer a:hover {
            color: #f5c842;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.2rem;
            }
            .nav-wrapper nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a2533;
                border-radius: 16px;
                padding: 16px;
                gap: 10px;
                margin-top: 10px;
            }
            .nav-wrapper nav.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-section input[type="text"] {
                min-width: unset;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            header {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 8px 10px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .card {
                padding: 16px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .highlight {
            color: #f5c842;
            font-weight: 600;
        }
        .badge {
            background: #f5c842;
            color: #0b0e14;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            display: inline-block;
        }
