*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --yellow: #f5d742;
            --dark: #1a1a2e;
            --blue: #16213e;
            --light-blue: #0f3460;
            --pink: #e94560;
            --white: #f8f9fa;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            --radius: 12px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--dark);
            color: var(--white);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--yellow);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--blue);
            padding: 16px 0;
            border-bottom: 3px solid var(--yellow);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--yellow);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5d742, #f9a825);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 400;
            color: var(--white);
            -webkit-text-fill-color: var(--white);
            background: none;
            letter-spacing: 0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--yellow);
            color: var(--yellow);
            font-size: 26px;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: var(--yellow);
            color: var(--dark);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: var(--white);
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 15px;
            transition: 0.2s;
            position: relative;
        }
        nav a:hover {
            background: rgba(245, 215, 66, 0.15);
            color: var(--yellow);
            text-decoration: none;
        }
        nav a.active {
            background: var(--yellow);
            color: var(--dark);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 0;
            font-size: 14px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--yellow);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--light-gray);
        }
        main {
            padding: 40px 0 60px;
        }
        .hero {
            text-align: center;
            padding: 40px 0 30px;
            background: radial-gradient(circle at 20% 30%, #16213e, #1a1a2e);
            border-radius: var(--radius);
            margin-bottom: 40px;
            border: 1px solid rgba(245, 215, 66, 0.15);
        }
        .hero h1 {
            font-size: clamp(32px, 7vw, 64px);
            font-weight: 900;
            color: var(--yellow);
            text-transform: uppercase;
            letter-spacing: 4px;
            line-height: 1.2;
            text-shadow: 0 0 40px rgba(245, 215, 66, 0.2);
        }
        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 16px auto 0;
            color: #cfd8dc;
        }
        .hero .badge {
            display: inline-block;
            background: var(--pink);
            color: #fff;
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 12px;
        }
        section {
            margin-bottom: 48px;
        }
        h2 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            color: var(--yellow);
            border-left: 6px solid var(--pink);
            padding-left: 18px;
            margin-bottom: 24px;
            margin-top: 40px;
        }
        h3 {
            font-size: clamp(20px, 3vw, 26px);
            font-weight: 600;
            color: #ffd54f;
            margin-top: 32px;
            margin-bottom: 14px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #ffe082;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: #e0e0e0;
            font-size: 16px;
        }
        .highlight {
            background: rgba(245, 215, 66, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: var(--yellow);
        }
        .emoji-big {
            font-size: 28px;
            display: inline-block;
            margin-right: 6px;
        }
        .list-styled {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        .list-styled li {
            padding: 8px 0 8px 32px;
            position: relative;
            color: #e0e0e0;
        }
        .list-styled li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-weight: 700;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid rgba(245, 215, 66, 0.08);
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(245, 215, 66, 0.25);
        }
        .card i {
            font-size: 32px;
            color: var(--yellow);
            margin-bottom: 12px;
        }
        .card h3 {
            margin-top: 0;
            font-size: 20px;
        }
        .card p {
            font-size: 15px;
            margin-bottom: 0;
        }
        .image-wrapper {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--blue);
            text-align: center;
        }
        .image-wrapper img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .image-wrapper .caption {
            padding: 12px 20px;
            font-size: 14px;
            color: var(--gray);
            background: rgba(0, 0, 0, 0.3);
            font-style: italic;
        }
        .search-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 32px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid rgba(245, 215, 66, 0.1);
            margin: 32px 0;
        }
        .search-box form {
            display: flex;
            max-width: 560px;
            margin: 0 auto;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: none;
            border-radius: 60px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.9);
            color: #1a1a2e;
            outline: 2px solid transparent;
            transition: 0.2s;
        }
        .search-box input[type="text"]:focus {
            outline-color: var(--yellow);
        }
        .search-box button {
            padding: 14px 32px;
            border: none;
            border-radius: 60px;
            background: var(--yellow);
            color: var(--dark);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #ffd700;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 32px 0;
        }
        @media (max-width: 720px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: rgba(255, 255, 255, 0.04);
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid rgba(245, 215, 66, 0.08);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.9);
            color: #1a1a2e;
            outline: 2px solid transparent;
            transition: 0.2s;
            font-family: var(--font);
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            outline-color: var(--yellow);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 28px;
            border: none;
            border-radius: 60px;
            background: var(--yellow);
            color: var(--dark);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffd700;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #444;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: 0.15s;
            color: #555;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--yellow);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: var(--radius);
            border: 1px solid rgba(245, 215, 66, 0.1);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
            background: rgba(0, 0, 0, 0.2);
        }
        th {
            background: var(--yellow);
            color: var(--dark);
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #e0e0e0;
        }
        tr:hover td {
            background: rgba(245, 215, 66, 0.05);
        }
        footer {
            background: var(--blue);
            border-top: 3px solid var(--yellow);
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 720px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        footer h3 {
            font-size: 18px;
            color: var(--yellow);
            margin-top: 0;
            margin-bottom: 14px;
        }
        footer p,
        footer a {
            font-size: 15px;
            color: #b0bec5;
        }
        footer a:hover {
            color: var(--yellow);
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 14px;
            color: var(--gray);
        }
        .copyright strong {
            color: var(--yellow);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--blue);
                padding: 12px 0 8px;
                border-top: 1px solid rgba(245, 215, 66, 0.15);
                margin-top: 8px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 10px 20px;
                width: 100%;
            }
            .hero h1 {
                font-size: 28px;
                letter-spacing: 2px;
            }
            .hero p {
                font-size: 16px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input[type="text"] {
                min-width: auto;
            }
            .header-inner {
                gap: 8px;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--yellow);
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffd700;
        }
        .last-update {
            display: inline-block;
            background: rgba(245, 215, 66, 0.1);
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 20px;
        }
        .last-update i {
            margin-right: 6px;
            color: var(--yellow);
        }
        blockquote {
            background: rgba(245, 215, 66, 0.06);
            border-left: 4px solid var(--yellow);
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: #cfd8dc;
        }
        blockquote strong {
            color: var(--yellow);
            font-style: normal;
        }
        .inline-link {
            color: var(--yellow);
            font-weight: 500;
            border-bottom: 1px dotted rgba(245, 215, 66, 0.3);
        }
        .inline-link:hover {
            border-bottom-color: var(--yellow);
            text-decoration: none;
        }
