* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0f0e17;
            color: #f5f0eb;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f9a826;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffc857;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a1932;
            padding: 18px 0;
            border-bottom: 2px solid #f9a826;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f9a826, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(249, 168, 38, 0.3);
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .nav-toggle {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #f5f0eb;
            cursor: pointer;
            padding: 4px 10px;
        }
        nav {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            color: #f5f0eb;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            border-bottom-color: #f9a826;
            color: #f9a826;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1e1d3a;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #2e2d4a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #f9a826;
        }
        .breadcrumb a {
            color: #c0bdd6;
        }
        .breadcrumb a:hover {
            color: #f9a826;
        }
        .breadcrumb .current {
            color: #f9a826;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #f9a826, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 30px;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #f9a826;
            border-left: 5px solid #f9a826;
            padding-left: 16px;
        }
        h3 {
            font-size: 24px;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #ffc857;
        }
        h4 {
            font-size: 20px;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #f5f0eb;
        }
        p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #e0dcd5;
        }
        .highlight {
            background: rgba(249, 168, 38, 0.15);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 28px;
            margin-right: 8px;
        }
        .last-updated {
            display: inline-block;
            background: #2e2d4a;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 14px;
            color: #c0bdd6;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f9a826;
        }
        .card {
            background: #1e1d3a;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 30px 0;
            border-left: 4px solid #f9a826;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .card-green {
            border-left-color: #2ecc71;
        }
        .card-blue {
            border-left-color: #3498db;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        .featured-img {
            margin: 30px 0;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            max-width: 100%;
        }
        .img-caption {
            font-size: 14px;
            color: #a09db8;
            margin-top: 8px;
            text-align: center;
            font-style: italic;
        }
        ul,
        ol {
            margin: 14px 0 18px 24px;
            color: #e0dcd5;
        }
        li {
            margin-bottom: 8px;
        }
        .search-box {
            display: flex;
            max-width: 500px;
            margin: 20px 0;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #3a395a;
            background: #1e1d3a;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: #f5f0eb;
            font-size: 16px;
            outline: none;
        }
        .search-box input::placeholder {
            color: #7a77a0;
        }
        .search-box button {
            background: #f9a826;
            border: none;
            padding: 14px 24px;
            color: #0f0e17;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
            font-size: 16px;
        }
        .search-box button:hover {
            background: #ffc857;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        .feedback-form {
            background: #1e1d3a;
            padding: 28px 32px;
            border-radius: 16px;
            border: 1px solid #2e2d4a;
        }
        .feedback-form h3 {
            margin-top: 0;
        }
        .feedback-form label {
            display: block;
            margin: 12px 0 6px;
            font-weight: 500;
            color: #c0bdd6;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #3a395a;
            background: #13122a;
            color: #f5f0eb;
            font-size: 15px;
            outline: none;
            transition: 0.2s;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #f9a826;
        }
        .feedback-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-form .btn-submit {
            background: #f9a826;
            color: #0f0e17;
            font-weight: 700;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            margin-top: 14px;
            transition: 0.2s;
            display: inline-block;
        }
        .feedback-form .btn-submit:hover {
            background: #ffc857;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            cursor: pointer;
            margin: 8px 0;
        }
        .star-rating i {
            color: #4a4870;
            transition: 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f9a826;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            padding: 18px 22px;
            background: #1e1d3a;
            border-radius: 12px;
            border: 1px solid #2e2d4a;
        }
        friend-link a {
            margin: 0 18px 0 4px;
            font-weight: 500;
        }
        friend-link::before {
            content: "🔗 Friends: ";
            font-weight: 700;
            color: #f9a826;
            margin-right: 8px;
        }
        footer {
            background: #1a1932;
            padding: 40px 0 30px;
            border-top: 2px solid #f9a826;
            text-align: center;
        }
        footer p {
            color: #a09db8;
            font-size: 14px;
            margin-bottom: 6px;
        }
        footer .copyright {
            margin-top: 16px;
            font-size: 13px;
            color: #6a6890;
            border-top: 1px solid #2e2d4a;
            padding-top: 18px;
        }
        @media (max-width: 900px) {
            .grid-2,
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 20px 0 10px;
                border-top: 1px solid #2e2d4a;
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                font-size: 16px;
                padding: 8px 0;
            }
            .card {
                padding: 20px;
            }
            .feedback-form {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 20px;
            }
            .my-logo {
                font-size: 22px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-box button {
                border-radius: 0;
            }
        }
        .btn-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f9a826;
            color: #0f0e17;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 20px rgba(249, 168, 38, 0.4);
            transition: 0.3s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            transform: translateY(-4px);
            background: #ffc857;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #f9a826, transparent);
            margin: 40px 0;
        }
