* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f4f7fb;
            color: #1a2a3a;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 8px 32px rgba(0,0,0,0.05);
            border-radius: 24px 24px 0 0;
            overflow: hidden;
        }
        header {
            background: linear-gradient(145deg, #0b1a2e, #1a2f44);
            padding: 20px 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 4px solid #f5c842;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #f5c842, #e6a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo i {
            background: #f5c842;
            -webkit-text-fill-color: #0b1a2e;
            padding: 8px;
            border-radius: 12px;
            font-size: 1.4rem;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            -webkit-text-fill-color: rgba(255,255,255,0.6);
            background: none;
            letter-spacing: 1px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            color: #e0e8f0;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            background: transparent;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: rgba(245, 200, 66, 0.18);
            color: #f5c842;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(255,255,255,0.08);
        }
        .breadcrumb {
            background: #f8fafc;
            padding: 12px 32px;
            font-size: 0.85rem;
            border-bottom: 1px solid #e6edf4;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #2a6f97;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #7a8a9a;
        }
        .breadcrumb .current {
            color: #1a2a3a;
            font-weight: 600;
        }
        .hero {
            padding: 40px 32px 20px;
            background: linear-gradient(135deg, #f0f6fe 0%, #e6edf8 100%);
            border-bottom: 1px solid #dce6f0;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0b1a2e;
            margin-bottom: 12px;
        }
        .hero h1 i {
            color: #f5c842;
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.1rem;
            color: #2c4258;
            max-width: 800px;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 32px;
            margin-top: 16px;
            font-size: 0.9rem;
            color: #4b637a;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #f5c842;
        }
        .hero .last-updated {
            background: #0b1a2e;
            color: #f5c842;
            padding: 2px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        main {
            padding: 32px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 24px;
            align-self: start;
            background: #f8fafc;
            border-radius: 20px;
            padding: 24px 20px;
            border: 1px solid #e6edf4;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            color: #0b1a2e;
            margin-bottom: 16px;
            border-bottom: 2px solid #f5c842;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 8px;
        }
        .sidebar ul li a {
            color: #2a6f97;
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .sidebar ul li a:hover {
            background: #e6edf4;
            color: #0b1a2e;
        }
        .content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0b1a2e;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f5c842;
        }
        .content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a2f44;
            margin: 28px 0 12px;
        }
        .content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2c4258;
            margin: 20px 0 8px;
        }
        .content p {
            margin-bottom: 16px;
            color: #1e3347;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
        }
        .content li {
            margin-bottom: 6px;
        }
        .content .highlight-box {
            background: #f0f6fe;
            border-left: 4px solid #f5c842;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .content .highlight-box strong {
            color: #0b1a2e;
        }
        .content img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 24px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            display: block;
        }
        .content .img-caption {
            font-size: 0.85rem;
            color: #5a7a8a;
            margin-top: -16px;
            margin-bottom: 24px;
            text-align: center;
        }
        .content .insight-card {
            background: #fff;
            border: 1px solid #e6edf4;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        }
        .content .insight-card h4 {
            margin-top: 0;
        }
        .content .player-quote {
            font-style: italic;
            background: #f8fafc;
            padding: 20px 24px;
            border-radius: 16px;
            border-left: 4px solid #f5c842;
            margin: 24px 0;
            color: #2c4258;
        }
        .content .player-quote cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-weight: 600;
            color: #0b1a2e;
        }
        .interaction-section {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #e6edf4;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .interaction-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 24px 28px;
            border: 1px solid #e6edf4;
        }
        .interaction-card h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: #0b1a2e;
        }
        .interaction-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .interaction-card input,
        .interaction-card textarea,
        .interaction-card select {
            padding: 12px 16px;
            border: 1px solid #d0dce8;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: 0.2s;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus {
            outline: none;
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245,200,66,0.15);
        }
        .interaction-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interaction-card .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #d0dce8;
            cursor: pointer;
            direction: rtl;
        }
        .interaction-card .star-rating input {
            display: none;
        }
        .interaction-card .star-rating label {
            cursor: pointer;
            transition: 0.2s;
            color: #d0dce8;
        }
        .interaction-card .star-rating label:hover,
        .interaction-card .star-rating label:hover~label,
        .interaction-card .star-rating input:checked~label {
            color: #f5c842;
        }
        .btn {
            background: #0b1a2e;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .btn:hover {
            background: #1a2f44;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(11,26,46,0.15);
        }
        .btn-outline {
            background: transparent;
            color: #0b1a2e;
            border: 2px solid #0b1a2e;
        }
        .btn-outline:hover {
            background: #0b1a2e;
            color: #fff;
        }
        footer {
            background: #0b1a2e;
            color: #b0c4d8;
            padding: 32px 32px 24px;
            margin-top: 16px;
            border-radius: 0 0 24px 24px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        footer h4 {
            color: #f5c842;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            color: #b0c4d8;
            font-size: 0.9rem;
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
        }
        footer a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.04);
            border-radius: 16px;
            padding: 16px 20px;
            margin-top: 12px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 4px;
            color: #b0c4d8;
            text-decoration: none;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        footer .copyright {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 20px;
            margin-top: 20px;
            font-size: 0.8rem;
            text-align: center;
            color: #7a92a8;
        }
        footer .copyright strong {
            color: #b0c4d8;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            header {
                padding: 16px 20px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f253c;
                border-radius: 16px;
                padding: 12px;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 10px 16px;
                border-radius: 12px;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                padding: 10px 16px;
                font-size: 0.75rem;
            }
            .hero {
                padding: 24px 16px 16px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            main {
                padding: 16px;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.2rem;
            }
            .interaction-card {
                padding: 16px;
            }
            footer {
                padding: 24px 16px 16px;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero .meta {
                font-size: 0.75rem;
                gap: 12px;
            }
            .btn {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
        }
