        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #f6ad55;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #a0aec0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            max-width: 100vw;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--secondary);
            color: white;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: #c53030;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--accent);
            border-radius: 3px;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 { margin-bottom: 1rem; }
        .mb-4 { margin-bottom: 1.5rem; }
        .mb-5 { margin-bottom: 3rem; }
        .p-3 { padding: 1rem; }
        .main-header {
            background: var(--primary);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
        }
        .header-top {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .logo span {
            background: linear-gradient(to right, var(--accent), #fed7d7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .search-box {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .search-box button:hover {
            background: #c53030;
        }
        .main-nav {
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            display: block;
            padding: 18px 22px;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent);
        }
        .nav-links a.active {
            color: var(--accent);
            background: rgba(255, 255, 255, 0.05);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-header {
            padding: 30px;
            border-bottom: 1px solid #e2e8f0;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .meta i {
            margin-right: 5px;
        }
        .article-body {
            padding: 30px;
        }
        .article-body p, .article-body li {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-body h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #e2e8f0;
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        .article-body strong {
            color: var(--primary);
            font-weight: 700;
        }
        .article-body em {
            color: var(--secondary);
            font-style: italic;
        }
        .highlight-box {
            background: #f0f9ff;
            border-left: 5px solid var(--secondary);
            padding: 25px;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: 10px;
            overflow: hidden;
        }
        .schedule-table th {
            background: var(--primary);
            color: white;
            padding: 18px;
            text-align: left;
        }
        .schedule-table td {
            padding: 15px 18px;
            border-bottom: 1px solid #e2e8f0;
        }
        .schedule-table tr:hover {
            background: #f7fafc;
        }
        .schedule-table .match-highlight {
            border-left: 4px solid var(--accent);
        }
        .img-with-caption {
            margin: 2.5rem 0;
            text-align: center;
        }
        .img-with-caption img {
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 10px;
        }
        .img-with-caption figcaption {
            font-style: italic;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .internal-links {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links ul {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        .internal-links a {
            display: inline-block;
            padding: 10px 20px;
            background: white;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            font-weight: 600;
        }
        .internal-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f6ad55;
        }
        .related-links li {
            padding: 12px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        .related-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .social-share {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        .social-share a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-size: 1.3rem;
        }
        .social-share a:hover {
            transform: scale(1.1);
            background: var(--secondary);
        }
        .user-interaction {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
        }
        .interaction-tabs {
            display: flex;
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 25px;
        }
        .tab-btn {
            padding: 15px 30px;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gray);
            cursor: pointer;
            position: relative;
        }
        .tab-btn.active {
            color: var(--primary);
        }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .rating-stars i {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f6ad55;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .comments-list {
            margin-top: 30px;
        }
        .comment {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary);
        }
        .main-footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        .friend-links a {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 6px;
        }
        .friend-links a:hover {
            background: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background: var(--primary);
                flex-direction: column;
                transition: 0.4s;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links a {
                padding: 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 576px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            .search-box {
                max-width: 100%;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .internal-links ul {
                flex-direction: column;
            }
        }
