        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0f1a;
            color: #e8edf5;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.25s ease, text-shadow 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            text-shadow: 0 0 8px rgba(247, 201, 72, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f7fc;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 1.2rem;
            border-left: 6px solid #f7c948;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin: 2.8rem 0 1rem 0;
            border-bottom: 2px solid rgba(247, 201, 72, 0.25);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin: 2rem 0 0.8rem 0;
            color: #ffdd77;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin: 1.5rem 0 0.5rem 0;
            color: #f0d68a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #14182b 0%, #1f2540 100%);
            border-bottom: 2px solid #2f3a5e;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f7c948, #ff9a56);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(247, 201, 72, 0.15);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7c948;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7c948;
            color: #f7c948;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(247, 201, 72, 0.15);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu a {
            color: #c8d0e8;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            color: #f7c948;
            border-bottom-color: #f7c948;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.4rem 0;
            font-size: 0.85rem;
            color: #8892b0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #f7c948;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #8892b0;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .current {
            color: #f7c948;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1a1f36 0%, #0d0f1a 100%);
            padding: 3rem 0 2.5rem;
            border-bottom: 1px solid #2a3150;
            position: relative;
        }
        .hero::after {
            content: "🪙🎰♠️";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 3rem;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero p {
            max-width: 800px;
            font-size: 1.1rem;
            color: #b8c4e0;
        }
        .search-block {
            background: #181d34;
            border: 1px solid #2f3a5e;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .search-block form {
            display: flex;
            flex: 1 1 100%;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-block input[type="text"] {
            flex: 1 1 220px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 2px solid #2f3a5e;
            background: #0d0f1a;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-block input[type="text"]:focus {
            border-color: #f7c948;
        }
        .search-block button {
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f7c948, #e5a832);
            color: #0d0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-block button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(247, 201, 72, 0.35);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 1024px) {
            .content-grid.cols-3 {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .card {
            background: #181d34;
            border: 1px solid #2a3150;
            border-radius: 16px;
            padding: 1.8rem;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            border-color: #f7c948;
        }
        .card h3 {
            margin-top: 0;
        }
        .card .fa-solid,
        .card .fa-regular {
            color: #f7c948;
            margin-right: 0.5rem;
        }
        .feature-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #2f3a5e;
            background: #14182b;
            padding: 0.5rem;
        }
        .feature-img img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 0.8rem 0.5rem 0.3rem;
            font-size: 0.9rem;
            color: #8892b0;
            text-align: center;
            font-style: italic;
        }
        .link-group {
            background: #14182b;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.8rem 0;
            border-left: 4px solid #f7c948;
        }
        .link-group a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media (min-width: 768px) {
            .feedback-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .feedback-box {
            background: #181d34;
            border: 1px solid #2f3a5e;
            border-radius: 16px;
            padding: 1.8rem;
        }
        .feedback-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-box form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .feedback-box input,
        .feedback-box textarea,
        .feedback-box select {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 2px solid #2f3a5e;
            background: #0d0f1a;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .feedback-box input:focus,
        .feedback-box textarea:focus,
        .feedback-box select:focus {
            border-color: #f7c948;
        }
        .feedback-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-box button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f7c948, #e5a832);
            color: #0d0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feedback-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(247, 201, 72, 0.25);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a4260;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7c948;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0a0c16;
            border-top: 2px solid #1f2540;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .footer-grid h4 {
            color: #f7c948;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            margin-bottom: 0.4rem;
        }
        .footer-grid a {
            color: #8892b0;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #f7c948;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #1f2540;
            color: #5a6480;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #8892b0;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #5a6480;
        }
        friend-link a {
            color: #8892b0;
            margin: 0 0.3rem;
        }
        friend-link a:hover {
            color: #f7c948;
        }
        .last-updated {
            display: inline-block;
            background: #1f2540;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #8892b0;
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            color: #f7c948;
            margin-right: 0.4rem;
        }
        @media (max-width: 767px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 0.5rem 0;
                border-bottom: 1px solid #2a3150;
            }
            .header-inner {
                align-items: center;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .search-block {
                padding: 1.2rem;
            }
            .card {
                padding: 1.2rem;
            }
            .feedback-box {
                padding: 1.2rem;
            }
            h1 {
                border-left-width: 4px;
                padding-left: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .search-block form {
                flex-direction: column;
            }
            .search-block input[type="text"] {
                flex: 1 1 auto;
            }
            .search-block button {
                width: 100%;
            }
            .feedback-box button {
                width: 100%;
                text-align: center;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2f3a5e;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f7c948;
        }
        @media print {
            .site-header,
            .nav-toggle,
            .search-block,
            .feedback-grid,
            .site-footer {
                display: none !important;
            }
            body {
                background: #fff;
                color: #111;
            }
            h1,
            h2,
            h3,
            h4 {
                color: #111;
            }
            a {
                color: #036;
            }
            .card {
                border: 1px solid #ccc;
                background: #f9f9f9;
            }
        }
