* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #0d1b2a 100%);
            padding: 18px 0;
            border-bottom: 4px solid #e63946;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            text-decoration: none;
            color: #fff;
            letter-spacing: -1px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo .logo-icon {
            font-size: 2.2rem;
            color: #e63946;
        }
        .my-logo .logo-text {
            background: linear-gradient(90deg, #fff, #f0c27f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo .logo-sub {
            font-size: 0.75rem;
            font-weight: 400;
            color: #a8b2c1;
            letter-spacing: 2px;
            -webkit-text-fill-color: #a8b2c1;
            display: block;
            margin-top: -4px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c9d1d9;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
            background: rgba(230, 57, 70, 0.25);
        }
        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: #e63946;
            border-radius: 2px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            align-items: center;
        }
        .breadcrumb li {
            color: #64748b;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 10px;
            color: #94a3b8;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: #e63946;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #b71c1c;
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(135deg, #0d1b2a 0%, #1a3a4a 50%, #0d1b2a 100%);
            padding: 60px 0 50px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '⚽';
            position: absolute;
            right: -30px;
            top: -30px;
            font-size: 18rem;
            opacity: 0.06;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 18px;
            letter-spacing: -1px;
        }
        .hero h1 span {
            background: linear-gradient(90deg, #e63946, #f0c27f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0c4de;
            max-width: 700px;
            line-height: 1.7;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 24px;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .hero .meta-info i {
            color: #e63946;
            margin-right: 6px;
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
            outline: none;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: #e63946;
        }
        .search-form button {
            padding: 14px 32px;
            background: #e63946;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #b71c1c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
        }
        .main-content {
            padding: 50px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-area article {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
        }
        .content-area h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #0d1b2a;
            margin: 40px 0 16px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e63946;
            display: inline-block;
        }
        .content-area h2:first-of-type {
            margin-top: 0;
        }
        .content-area h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1b2838;
            margin: 30px 0 12px;
        }
        .content-area h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 24px 0 10px;
        }
        .content-area p {
            margin-bottom: 18px;
            color: #2d3748;
            font-size: 1.05rem;
        }
        .content-area ul,
        .content-area ol {
            margin: 16px 0 20px 24px;
            color: #2d3748;
        }
        .content-area li {
            margin-bottom: 10px;
            font-size: 1.02rem;
        }
        .content-area .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 5px solid #e63946;
            padding: 24px 28px;
            border-radius: 10px;
            margin: 24px 0;
        }
        .content-area .highlight-box strong {
            color: #e63946;
        }
        .content-area .img-wrapper {
            margin: 30px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .content-area .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        .content-area .img-wrapper:hover img {
            transform: scale(1.02);
        }
        .content-area .img-wrapper figcaption {
            background: #0d1b2a;
            color: #c9d1d9;
            padding: 12px 20px;
            font-size: 0.9rem;
            text-align: center;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 14px;
            padding: 28px 24px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0d1b2a;
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e63946;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-widget ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar-widget ul li:last-child {
            border-bottom: none;
        }
        .sidebar-widget ul li a {
            color: #2d3748;
            text-decoration: none;
            transition: color 0.3s, padding-left 0.3s;
            display: block;
            font-size: 0.95rem;
        }
        .sidebar-widget ul li a:hover {
            color: #e63946;
            padding-left: 6px;
        }
        .sidebar-widget .link-list a::before {
            content: '› ';
            color: #e63946;
            font-weight: 700;
        }
        .rating-widget {
            background: #fff;
            border-radius: 14px;
            padding: 28px 24px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
            text-align: center;
        }
        .rating-widget h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0d1b2a;
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e63946;
            text-align: left;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 2.4rem;
            color: #d1d5db;
            cursor: pointer;
            margin: 16px 0;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.3s, transform 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f59e0b;
            transform: scale(1.15);
        }
        .rating-widget .rating-info {
            font-size: 0.9rem;
            color: #64748b;
            margin-top: 8px;
        }
        .rating-widget .rating-btn {
            padding: 12px 36px;
            background: #e63946;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 12px;
        }
        .rating-widget .rating-btn:hover {
            background: #b71c1c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
        }
        .comments-section {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
            margin-top: 40px;
        }
        .comments-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0d1b2a;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e63946;
            display: inline-block;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            transition: border-color 0.3s;
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: #e63946;
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            margin: 16px 0;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            min-width: 160px;
        }
        .comment-form .form-row input:focus {
            border-color: #e63946;
        }
        .comment-form .submit-btn {
            padding: 14px 36px;
            background: #e63946;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-form .submit-btn:hover {
            background: #b71c1c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
        }
        .comment-list {
            margin-top: 30px;
        }
        .comment-item {
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .comment-author {
            font-weight: 700;
            color: #0d1b2a;
        }
        .comment-item .comment-date {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-left: 12px;
        }
        .comment-item .comment-text {
            margin-top: 6px;
            color: #2d3748;
        }
        .site-footer {
            background: #0d1b2a;
            color: #c9d1d9;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #e63946;
            border-radius: 2px;
        }
        .footer-col p {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.7;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            padding: 5px 0;
        }
        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s, padding-left 0.3s;
            font-size: 0.9rem;
        }
        .footer-col ul li a:hover {
            color: #e63946;
            padding-left: 4px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            padding: 20px 24px;
            margin-top: 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        friend-link ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        friend-link ul li a:hover {
            color: #e63946;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: #64748b;
        }
        .footer-bottom .copyright {
            margin-bottom: 6px;
        }
        .footer-bottom a {
            color: #e63946;
            text-decoration: none;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
            }
            .main-nav a.active::after {
                display: none;
            }
            .main-nav a.active {
                background: rgba(230, 57, 70, 0.2);
            }
            .hero {
                padding: 40px 0 30px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-area article {
                padding: 24px 18px;
            }
            .comments-section {
                padding: 24px 18px;
            }
            .content-area h2 {
                font-size: 1.5rem;
            }
            .content-area h3 {
                font-size: 1.25rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar-widget {
                padding: 20px 16px;
            }
            .rating-stars {
                font-size: 2rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .breadcrumb ol {
                gap: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-area article {
                padding: 16px 12px;
            }
            .comments-section {
                padding: 16px 12px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .rating-stars {
                font-size: 1.7rem;
                gap: 6px;
            }
        }
        .text-muted {
            color: #64748b;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gap-10 {
            gap: 10px;
        }
        .fw-700 {
            font-weight: 700;
        }
        .color-accent {
            color: #e63946;
        }
