        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #FFF8F0;
            color: #2D2D2D;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #8B1A1A;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #D4A017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1A1A2E;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(135deg, #8B1A1A 0%, #5C0E0E 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(139, 26, 26, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #fff;
            text-shadow: 2px 2px 0 #D4A017;
            font-style: italic;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #fff;
            text-decoration: none;
        }
        .my-logo span {
            color: #D4A017;
            text-shadow: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #D4A017;
            color: #D4A017;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(212, 160, 23, 0.15);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #f5e6d3;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a:focus-visible {
            background: #D4A017;
            color: #1A1A2E;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #D4A017;
            color: #1A1A2E;
        }
        .breadcrumb-wrap {
            background: #f5ede4;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e2d5c8;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .breadcrumb-wrap nav a {
            color: #8B1A1A;
        }
        .breadcrumb-wrap nav span {
            color: #6d6d6d;
        }
        .breadcrumb-wrap .sep {
            color: #aaa;
            margin: 0 0.2rem;
        }
        .hero {
            background: linear-gradient(135deg, #1A1A2E 0%, #2D1B3D 50%, #8B1A1A 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎮⚽🔥";
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 8rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #fff;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .hero h1 i {
            color: #D4A017;
        }
        .hero p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 1.2rem;
        }
        .hero .update-badge {
            display: inline-block;
            background: #D4A017;
            color: #1A1A2E;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        section {
            padding: 2.5rem 0;
        }
        section:nth-child(even) {
            background: #fcf7f2;
        }
        .section-title {
            font-size: 2rem;
            color: #8B1A1A;
            margin-bottom: 1.2rem;
            border-left: 5px solid #D4A017;
            padding-left: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .section-title i {
            color: #D4A017;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0e6dc;
            transition: box-shadow 0.3s, transform 0.2s;
            margin-bottom: 1.5rem;
        }
        .card:hover {
            box-shadow: 0 8px 40px rgba(139, 26, 26, 0.10);
            transform: translateY(-2px);
        }
        .coupon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .coupon-item {
            background: #fff;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            border: 2px dashed #D4A017;
            text-align: center;
            transition: background 0.2s, border-color 0.2s;
        }
        .coupon-item:hover {
            background: #FFF8F0;
            border-color: #8B1A1A;
        }
        .coupon-item .code {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #8B1A1A;
            background: #f5ede4;
            padding: 0.2rem 1rem;
            border-radius: 8px;
            display: inline-block;
            margin: 0.5rem 0;
        }
        .coupon-item .badge {
            display: inline-block;
            background: #2e7d32;
            color: #fff;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        .link-list li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.8rem;
            background: #fff;
            border-radius: 8px;
            border: 1px solid #f0e6dc;
            transition: all 0.2s;
            font-weight: 500;
        }
        .link-list li a:hover {
            background: #8B1A1A;
            color: #fff;
            text-decoration: none;
            border-color: #8B1A1A;
        }
        .link-list li a i {
            width: 1.2rem;
            text-align: center;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 500px;
            margin: 1rem 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #e2d5c8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
            background: #fff;
        }
        .search-box input:focus {
            border-color: #8B1A1A;
        }
        .search-box button {
            padding: 0.7rem 1.8rem;
            background: #8B1A1A;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #5C0E0E;
            transform: scale(1.02);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1A1A2E;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e2d5c8;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #8B1A1A;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 0.7rem 2rem;
            background: #8B1A1A;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover {
            background: #5C0E0E;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s, transform 0.1s;
            color: #ccc;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #D4A017;
            transform: scale(1.1);
        }
        .site-footer {
            background: #1A1A2E;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .site-footer a {
            color: #D4A017;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer friend-link {
            display: block;
            font-style: normal;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin: 0.2rem 0.5rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: rgba(212, 160, 23, 0.1);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .site-footer friend-link a:hover {
            background: rgba(212, 160, 23, 0.25);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #2D2D4A;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(92, 14, 14, 0.95);
                border-radius: 12px;
                padding: 0.8rem;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .card {
                padding: 1.2rem;
            }
            .coupon-grid {
                grid-template-columns: 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                justify-content: center;
            }
        }
        .text-muted {
            color: #6d6d6d;
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .align-center {
            align-items: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #f0e6dc;
        }
        th {
            background: #8B1A1A;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fcf7f2;
        }
        .tip-box {
            background: #f0f7e8;
            border-left: 5px solid #2e7d32;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .tip-box i {
            color: #2e7d32;
            margin-right: 0.5rem;
        }
        .warning-box {
            background: #fff4e5;
            border-left: 5px solid #D4A017;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .interview-block {
            background: #1A1A2E;
            color: #f0e6dc;
            padding: 1.8rem 2rem;
            border-radius: 16px;
            margin: 1.5rem 0;
            position: relative;
        }
        .interview-block::before {
            content: "🎙️";
            font-size: 2.5rem;
            position: absolute;
            top: -10px;
            left: -10px;
            opacity: 0.3;
        }
        .interview-block h4 {
            color: #D4A017;
            font-size: 1.2rem;
        }
        .interview-block p {
            margin-top: 0.5rem;
        }
