        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f4f7fb;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #004080;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px;
                margin-top: 0.75rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e6edf5;
            margin-bottom: 1rem;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0b2a4a;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #0b2a4a, #1a4a7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5a623;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #4a6a8a;
            letter-spacing: 0.3px;
            margin-left: 0.4rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px 10px;
            border: none;
            background: transparent;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef3f8;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3.5px;
            background: #0b2a4a;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
        }
        .main-nav li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e3a5a;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav li a:hover {
            background: #e6edf5;
            color: #0b2a4a;
            text-decoration: none;
        }
        .main-nav li a.active {
            background: #0b2a4a;
            color: #fff;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding: 0;
            }
            .nav-wrapper.open {
                max-height: 600px;
                padding: 0.75rem 0 0.3rem;
            }
            .main-nav {
                flex-direction: column;
                gap: 0.2rem;
                width: 100%;
            }
            .main-nav li a {
                padding: 0.6rem 1rem;
                border-radius: 12px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #5a7a9a;
            padding: 0.5rem 0 1rem;
            border-bottom: 1px solid #eef3f8;
            margin-bottom: 1.5rem;
        }
        .breadcrumb a {
            color: #0066cc;
        }
        .breadcrumb a:hover {
            color: #004080;
        }
        .breadcrumb .sep {
            color: #aabbcc;
            font-weight: 300;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0b2a4a;
            line-height: 1.2;
            margin: 0 0 0.5rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #14365a;
            margin: 2.2rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 3px solid #e6edf5;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #1e4a6a;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2a5a7a;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1rem;
            color: #2a3a4a;
        }
        .lead {
            font-size: 1.15rem;
            color: #1e3a5a;
            font-weight: 400;
            background: #f0f5fc;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            border-left: 4px solid #f5a623;
        }
        @media (max-width: 640px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .lead {
                padding: 0.8rem 1rem;
                font-size: 1rem;
            }
        }
        .hero-img-wrap {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #6a8aaa;
            margin-top: 0.4rem;
            text-align: center;
            font-style: italic;
        }
        .search-block {
            background: #f0f5fc;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            margin: 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            align-items: center;
        }
        .search-block label {
            font-weight: 600;
            color: #0b2a4a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-block input[type="text"] {
            flex: 1 1 200px;
            padding: 0.6rem 1rem;
            border: 2px solid #d0dce8;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
            min-width: 0;
        }
        .search-block input[type="text"]:focus {
            border-color: #0066cc;
        }
        .search-block button {
            padding: 0.6rem 1.8rem;
            background: #0b2a4a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-block button:hover {
            background: #1a4a7a;
        }
        .search-block button:active {
            transform: scale(0.97);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0 1.5rem;
        }
        @media (max-width: 640px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #f8faff;
            border-radius: 16px;
            padding: 1.2rem 1.5rem 1.5rem;
            border: 1px solid #e6edf5;
        }
        .feedback-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="number"],
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border: 2px solid #d0dce8;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            background: #fff;
            margin-bottom: 0.6rem;
            resize: vertical;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #0066cc;
        }
        .feedback-card textarea {
            min-height: 80px;
        }
        .feedback-card button {
            padding: 0.55rem 1.6rem;
            background: #0b2a4a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .feedback-card button:hover {
            background: #1a4a7a;
        }
        .star-rating {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #d0dce8;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }
        .star-rating .star {
            transition: color 0.15s;
        }
        .star-rating .star.active,
        .star-rating .star:hover {
            color: #f5a623;
        }
        .rating-value {
            font-size: 0.9rem;
            color: #5a7a9a;
            margin-left: 0.4rem;
        }
        .link-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            background: #f4f9ff;
            padding: 1rem 1.4rem;
            border-radius: 16px;
            margin: 1.2rem 0;
            list-style: none;
        }
        .link-grid li a {
            font-weight: 500;
            font-size: 0.92rem;
        }
        .link-grid li a::before {
            content: "🔗 ";
            font-size: 0.8rem;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 12px;
            border: 1px solid #e6edf5;
        }
        .data-table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        .data-table-wrap th,
        .data-table-wrap td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eef3f8;
        }
        .data-table-wrap th {
            background: #0b2a4a;
            color: #fff;
            font-weight: 600;
            white-space: nowrap;
        }
        .data-table-wrap tr:last-child td {
            border-bottom: none;
        }
        .data-table-wrap tr:hover td {
            background: #f4f9ff;
        }
        friend-link {
            display: block;
            background: #f0f5fc;
            border-radius: 16px;
            padding: 1.2rem 1.5rem;
            margin: 2rem 0 0.8rem;
            border: 1px solid #dce6f0;
        }
        friend-link::before {
            content: "🌐 Friends of World Cup Draft";
            display: block;
            font-weight: 700;
            font-size: 1.05rem;
            color: #0b2a4a;
            margin-bottom: 0.6rem;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            list-style: none;
        }
        .friend-list li a {
            font-weight: 500;
            font-size: 0.92rem;
        }
        .site-footer {
            border-top: 2px solid #e6edf5;
            padding-top: 1.2rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #5a7a9a;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.6rem;
        }
        .site-footer .copyright {
            font-weight: 400;
        }
        .site-footer .copyright strong {
            color: #0b2a4a;
        }
        .last-updated {
            display: inline-block;
            background: #eef3f8;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #4a6a8a;
            margin-bottom: 0.8rem;
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .container {
                padding: 0.8rem;
            }
            .search-block {
                padding: 1rem;
            }
            .feedback-card {
                padding: 1rem;
            }
        }
        .section-reveal {
            animation: fadeUp 0.5s ease forwards;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        blockquote {
            background: #f4f9ff;
            border-left: 5px solid #f5a623;
            padding: 1rem 1.5rem;
            margin: 1.2rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #1e3a5a;
        }
        blockquote cite {
            display: block;
            margin-top: 0.4rem;
            font-style: normal;
            font-weight: 600;
            font-size: 0.9rem;
            color: #4a6a8a;
        }
        .highlight {
            background: #fef7e0;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
            font-weight: 500;
        }
        .faq-item {
            border-bottom: 1px solid #e6edf5;
            padding: 0.8rem 0;
        }
        .faq-item summary {
            font-weight: 600;
            cursor: pointer;
            color: #0b2a4a;
            font-size: 1.02rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::before {
            content: "▶";
            font-size: 0.75rem;
            color: #f5a623;
            transition: transform 0.2s;
        }
        .faq-item[open] summary::before {
            transform: rotate(90deg);
        }
        .faq-item .faq-answer {
            padding: 0.6rem 0 0.2rem 1.2rem;
            color: #2a4a6a;
        }
