* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0d10;
            color: #e8e6e1;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            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: #14181c;
            border-bottom: 2px solid #2a2e35;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c542, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(245, 197, 66, 0.15);
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a::after {
            content: " 🦇";
            -webkit-text-fill-color: initial;
            color: #f5c542;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c54222;
        }
        .nav-menu {
            display: flex;
            gap: 12px 24px;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            color: #cfcfcf;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 15px;
        }
        .nav-menu li a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
        }
        .breadcrumb {
            background: #1a1f24;
            padding: 10px 0;
            font-size: 13px;
            color: #9a9a9a;
            border-bottom: 1px solid #2a2e35;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #f5c542;
        }
        .breadcrumb a {
            color: #c0b07a;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 30% 40%, #1c232b, #0b0d10 80%);
        }
        .hero h1 {
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #f5c542, #e6b422, #f5c542);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 18px;
            max-width: 720px;
            margin: 0 auto 24px;
            color: #bbb;
        }
        .hero .last-updated {
            font-size: 14px;
            color: #7a7a7a;
            border-top: 1px solid #2a2e35;
            padding-top: 16px;
            display: inline-block;
        }
        section {
            padding: 48px 0;
        }
        section:nth-child(even) {
            background: #111418;
        }
        h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            color: #f5c542;
            margin-bottom: 24px;
            border-left: 6px solid #f5c542;
            padding-left: 20px;
        }
        h3 {
            font-size: clamp(22px, 2.8vw, 30px);
            font-weight: 700;
            color: #e8d5a3;
            margin-top: 36px;
            margin-bottom: 14px;
        }
        h4 {
            font-size: clamp(18px, 2.2vw, 24px);
            font-weight: 600;
            color: #d4c088;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d8d4cf;
        }
        .highlight {
            background: #f5c54222;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #f5c542;
        }
        .emoji-big {
            font-size: 28px;
            margin-right: 6px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }
        .card {
            background: #1a1f26;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2a2f38;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            border-color: #f5c54255;
        }
        .card h4 {
            margin-top: 0;
        }
        .card i {
            color: #f5c542;
            font-size: 28px;
            margin-bottom: 12px;
            display: inline-block;
        }
        .image-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
            background: #1a1f26;
            padding: 8px;
        }
        .image-wrapper img {
            width: 100%;
            border-radius: 10px;
        }
        .form-block {
            background: #161c22;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #2a2f38;
            margin: 32px 0;
        }
        .form-block label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #d4c088;
        }
        .form-block input,
        .form-block textarea,
        .form-block select {
            width: 100%;
            padding: 12px 16px;
            background: #0b0d10;
            border: 1px solid #2a2f38;
            border-radius: 8px;
            color: #e8e6e1;
            font-size: 15px;
            transition: 0.2s;
            margin-bottom: 16px;
            font-family: inherit;
        }
        .form-block input:focus,
        .form-block textarea:focus {
            outline: none;
            border-color: #f5c542;
            box-shadow: 0 0 0 3px #f5c54222;
        }
        .form-block textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f5c542;
            color: #0b0d10;
            border: none;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(245, 197, 66, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c542;
            color: #f5c542;
        }
        .btn-outline:hover {
            background: #f5c54222;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #3a3a3a;
            cursor: pointer;
            margin-bottom: 16px;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5c542;
        }
        footer {
            background: #0f1216;
            border-top: 2px solid #1f242b;
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        friend-link {
            display: block;
            background: #161c22;
            border-radius: 12px;
            padding: 20px 24px;
            border: 1px solid #2a2f38;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1f242b;
            font-size: 14px;
            color: #7a7a7a;
        }
        .copyright strong {
            color: #c0b07a;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 8px;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 0;
                font-size: 18px;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 32px;
            }
            .form-block {
                padding: 20px 16px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb ol {
                font-size: 12px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            section {
                padding: 32px 0;
            }
            .hero {
                padding: 40px 0 24px;
            }
            .my-logo {
                font-size: 22px;
            }
        }
        .text-gold {
            color: #f5c542;
        }
        .text-muted {
            color: #7a7a7a;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .gap-8 {
            gap: 8px;
        }
        .fw-700 {
            font-weight: 700;
        }
        :target {
            scroll-margin-top: 100px;
        }
