* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0d0d0d;
            color: #e8e8e8;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a1a 0%, #2c2c2c 100%);
            border-bottom: 3px solid #f5c518;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c518, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 24, 0.25);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: #ff6b35;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5c518;
            cursor: pointer;
            padding: 4px 10px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
            color: #ddd;
        }
        .nav-menu a:hover {
            border-bottom-color: #f5c518;
            color: #f5c518;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #1a1a1a;
            padding: 12px 0;
            border-bottom: 1px solid #2a2a2a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c518;
        }
        .breadcrumb .current {
            color: #f5c518;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1f00 50%, #1a1a1a 100%);
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 2px solid #f5c51830;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c518, #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: #bbb;
            max-width: 780px;
            margin: 0 auto 20px;
        }
        .hero .last-update {
            font-size: 0.9rem;
            color: #888;
            border-top: 1px solid #333;
            padding-top: 18px;
            display: inline-block;
        }
        main {
            padding: 40px 0 60px;
        }
        section {
            margin-bottom: 56px;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5c518;
            border-left: 5px solid #ff6b35;
            padding-left: 18px;
            margin: 48px 0 24px;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #f0d060;
            margin: 32px 0 16px;
            line-height: 1.4;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #e0b030;
            margin: 24px 0 12px;
            line-height: 1.4;
        }
        p {
            margin-bottom: 18px;
            color: #d5d5d5;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        .content-grid.single-col {
            grid-template-columns: 1fr;
        }
        .card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid #2a2a2a;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(245, 197, 24, 0.08);
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .featured-image {
            border-radius: 14px;
            overflow: hidden;
            margin: 30px 0;
            border: 2px solid #2a2a2a;
            background: #111;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 14px 20px;
            font-size: 0.9rem;
            color: #999;
            background: #111;
            border-top: 1px solid #222;
        }
        .highlight {
            background: #222;
            border-left: 4px solid #f5c518;
            padding: 20px 24px;
            border-radius: 0 10px 10px 0;
            margin: 24px 0;
        }
        .highlight strong {
            color: #f5c518;
        }
        .btn {
            display: inline-block;
            padding: 10px 28px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.95rem;
            background: linear-gradient(135deg, #f5c518, #e09a00);
            color: #0d0d0d;
            border: none;
            cursor: pointer;
            transition: 0.25s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 24px rgba(245, 197, 24, 0.3);
            text-decoration: none;
            color: #0d0d0d;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c518;
            color: #f5c518;
        }
        .btn-outline:hover {
            background: #f5c518;
            color: #0d0d0d;
        }
        .tag {
            display: inline-block;
            background: #2a2a2a;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #aaa;
            margin: 4px 4px 4px 0;
        }
        .tag i {
            margin-right: 4px;
            color: #f5c518;
        }
        .search-section {
            background: #151515;
            border-radius: 14px;
            padding: 32px;
            border: 1px solid #2a2a2a;
            margin: 40px 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 16px 0 0;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 8px;
            border: 1px solid #333;
            background: #0d0d0d;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f5c518;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 8px;
            border: none;
            background: #f5c518;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: #ff8c42;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }
        .feedback-card {
            background: #151515;
            border-radius: 14px;
            padding: 28px;
            border: 1px solid #2a2a2a;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #333;
            background: #0d0d0d;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5c518;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
        }
        .feedback-card .star-rating input {
            display: none;
        }
        .feedback-card .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
            color: #444;
        }
        .feedback-card .star-rating label:hover,
        .feedback-card .star-rating label:hover~label,
        .feedback-card .star-rating input:checked~label {
            color: #f5c518;
        }
        footer {
            background: #0a0a0a;
            border-top: 2px solid #1a1a1a;
            padding: 40px 0 30px;
            margin-top: 20px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            padding: 18px 0;
            border-top: 1px solid #1a1a1a;
            border-bottom: 1px solid #1a1a1a;
        }
        friend-link a {
            color: #aaa;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            color: #f5c518;
        }
        .copyright {
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            padding-top: 12px;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width: 880px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 18px 0 10px;
                border-top: 1px solid #2a2a2a;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                border-bottom: 1px solid #222;
                width: 100%;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: unset;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .card {
                padding: 16px;
            }
            .feedback-card {
                padding: 18px;
            }
            .search-section {
                padding: 20px;
            }
        }
        .emoji-big {
            font-size: 2rem;
            margin-right: 6px;
        }
        .inline-icon {
            margin-right: 6px;
            color: #f5c518;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #f5c51820, #f5c51880, #f5c51820);
            margin: 40px 0;
            border: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #151515;
            border-radius: 10px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th {
            background: #222;
            color: #f5c518;
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #222;
            color: #ccc;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .stat-number {
            color: #f5c518;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .quote {
            font-style: italic;
            color: #bbb;
            padding: 16px 24px;
            border-left: 4px solid #f5c518;
            background: #1a1a1a;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .quote cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            color: #888;
            font-size: 0.9rem;
        }
