:root {
            --primary-blue: #0056b3;
            --secondary-gold: #ffd700;
            --accent-green: #28a745;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-light: #e9ecef;
            --text-dark: #212529;
            --card-bg: #1e1e1e;
            --border-color: #444;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background-color: var(--dark-bg);
            background-image: linear-gradient(to bottom, #0a0a0a, #1a1a2e);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-blue);
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(0, 86, 179, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--card-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--secondary-gold);
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle at center, rgba(0, 86, 179, 0.15), transparent 70%);
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }
        .search-box input::placeholder {
            color: #999;
        }
        .search-box button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #004494;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        .content-article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .content-article h2, .content-article h3 {
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            color: var(--secondary-gold);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-blue);
        }
        .content-article h2 {
            font-size: 2.2rem;
        }
        .content-article h3 {
            font-size: 1.8rem;
        }
        .content-article p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.15rem;
            color: #d1d1d1;
        }
        .content-article b, .content-article strong {
            color: #fff;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.2), rgba(255, 215, 0, 0.1));
            border-left: 5px solid var(--secondary-gold);
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            box-shadow: var(--shadow);
            border: 2px solid var(--border-color);
        }
        .link-list {
            list-style: none;
            padding: 25px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        .link-list li:before {
            content: '⚽';
            position: absolute;
            left: 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            color: var(--secondary-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--primary-blue);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #555;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .active {
            color: var(--secondary-gold);
        }
        .rating-widget button {
            background-color: var(--accent-green);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            margin-top: 15px;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: #218838;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-family: inherit;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #004494;
        }
        footer {
            background-color: #0a0a0a;
            margin-top: 60px;
            padding: 50px 0 30px;
            border-top: 3px solid var(--primary-blue);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            display: block;
            padding: 10px 0;
            border-bottom: 1px dashed #444;
        }
        friend-link a:last-child {
            border-bottom: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content-article {
                padding: 25px;
            }
            .content-article h2 {
                font-size: 1.8rem;
            }
            .content-article h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 40px 15px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
            .content-article {
                padding: 20px;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
            vertical-align: middle;
        }
        .tag {
            display: inline-block;
            background-color: rgba(0, 86, 179, 0.3);
            color: #a3d5ff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin: 0 5px 5px 0;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            text-align: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            min-width: 150px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-gold);
            display: block;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #aaa;
        }
