* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0a830;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffc75f;
            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: #141a24;
            border-bottom: 2px solid #2a3548;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            background: rgba(20, 26, 36, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0a830;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f0a830, #ff6a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            display: block;
            -webkit-text-fill-color: #8899bb;
            color: #8899bb;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a3548;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #c8d0dd;
            transition: all 0.25s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #f0a830;
            color: #0b0e14;
            text-decoration: none;
        }
        nav a.active {
            background: #f0a830;
            color: #0b0e14;
        }
        .breadcrumb {
            padding: 12px 0 6px;
            font-size: 0.85rem;
            color: #8899bb;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #8899bb;
        }
        .breadcrumb a:hover {
            color: #f0a830;
        }
        .breadcrumb span {
            color: #556688;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0a830, #ff7e00, #f0a830);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto 20px;
            color: #b0c0dd;
        }
        .last-update {
            display: inline-block;
            background: #1f2a3a;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #99aabb;
        }
        .last-update i {
            margin-right: 6px;
            color: #f0a830;
        }
        section {
            padding: 30px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #f0a830;
            margin-bottom: 20px;
            border-left: 5px solid #f0a830;
            padding-left: 16px;
        }
        .section-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffc75f;
            margin: 28px 0 14px;
        }
        .section-subtitle-h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e0b050;
            margin: 20px 0 10px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 20px 0;
        }
        .content-grid.single {
            grid-template-columns: 1fr;
        }
        .card {
            background: #18202e;
            border-radius: 16px;
            padding: 24px 28px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #2a3548;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
        }
        .card h3 {
            color: #f0a830;
            margin-bottom: 10px;
        }
        .card h4 {
            color: #ffc75f;
            margin: 12px 0 6px;
        }
        .card p {
            color: #c8d0dd;
            margin-bottom: 10px;
        }
        .card .fa-solid,
        .card .fa-regular {
            color: #f0a830;
            margin-right: 8px;
        }
        .highlight {
            background: #1f2a3a;
            padding: 4px 12px;
            border-radius: 20px;
            color: #ffc75f;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 2rem;
            margin-right: 8px;
        }
        .inline-list {
            list-style: none;
            padding-left: 0;
        }
        .inline-list li {
            padding: 6px 0;
            border-bottom: 1px solid #2a3548;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .inline-list li::before {
            content: "🏍️";
            font-size: 1.1rem;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 18px;
            background: #141a24;
            font-size: 0.9rem;
            color: #99aabb;
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 560px;
            margin: 20px auto 30px;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #2a3548;
            background: #141a24;
            transition: border-color 0.3s;
        }
        .search-box:focus-within {
            border-color: #f0a830;
        }
        .search-box input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #556688;
        }
        .search-box button {
            padding: 14px 28px;
            background: #f0a830;
            border: none;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-box button:hover {
            background: #ffc75f;
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        .feedback-card {
            background: #18202e;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #2a3548;
        }
        .feedback-card h3 {
            color: #f0a830;
            margin-bottom: 16px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3548;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f0a830;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn {
            padding: 12px 24px;
            background: #f0a830;
            border: none;
            border-radius: 30px;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .feedback-card .btn:hover {
            background: #ffc75f;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a4a5a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0a830;
        }
        .links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 16px 0;
        }
        .links-list a {
            background: #1f2a3a;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #c8d0dd;
            border: 1px solid #2a3548;
            transition: all 0.25s;
        }
        .links-list a:hover {
            background: #f0a830;
            color: #0b0e14;
            border-color: #f0a830;
            text-decoration: none;
        }
        footer {
            background: #141a24;
            border-top: 2px solid #2a3548;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #f0a830;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        footer p,
        footer a {
            color: #8899bb;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: #f0a830;
        }
        friend-link {
            display: block;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #1f2a3a;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1f2a3a;
            color: #556688;
            font-size: 0.85rem;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .user-feedback {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 10px;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box button {
                border-radius: 0 0 16px 16px;
            }
            .feedback-card .btn {
                width: 100%;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .card {
                padding: 16px 18px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3548;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f0a830;
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
