* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #2563eb;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --text-color: #1f2937;
            --light-bg: #f8fafc;
            --dark-bg: #1e293b;
            --border-color: #e2e8f0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #334155 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        .logo span {
            color: var(--accent-color);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: white;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb-links {
            display: flex;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb-links a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb-links span {
            color: var(--text-color);
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        .search-container {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form {
            display: flex;
            margin-top: 1.5rem;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #eab308;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .article-title {
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #64748b;
            margin-bottom: 2rem;
        }
        .article-content {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .content-section h3 {
            color: var(--secondary-color);
            margin: 1.5rem 0 1rem 0;
        }
        .content-section p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: var(--light-bg);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .tournament-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .info-card {
            background: linear-gradient(135deg, var(--light-bg) 0%, #e2e8f0 100%);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .info-card i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .info-card h4 {
            margin-bottom: 0.5rem;
            color: var(--dark-bg);
        }
        .feature-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .tab-container {
            margin: 2rem 0;
        }
        .tab-buttons {
            display: flex;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
        }
        .tab-btn {
            padding: 0.75rem 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        .tab-btn.active {
            border-bottom-color: var(--primary-color);
            color: var(--primary-color);
            font-weight: bold;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .rating-section {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-color);
        }
        .rating-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 1rem;
            transition: background-color 0.3s;
        }
        .rating-btn:hover {
            background-color: #1d4ed8;
        }
        .comments-section {
            margin: 3rem 0;
        }
        .comment-form {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #1d4ed8;
        }
        .comment {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        .comment-date {
            color: #64748b;
            font-size: 0.9rem;
        }
        .footer-links {
            background-color: var(--light-bg);
            padding: 3rem 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: white;
            padding: 1rem;
            border-radius: 4px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        .social-link {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-link:hover {
            color: var(--accent-color);
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            .tournament-info {
                grid-template-columns: 1fr;
            }
            .tab-buttons {
                flex-direction: column;
            }
            .tab-btn {
                border-bottom: none;
                border-left: 3px solid transparent;
            }
            .tab-btn.active {
                border-left-color: var(--primary-color);
                border-bottom: none;
            }
        }
