        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a1e3a 0%, #1a3a5f 100%);
            color: #f0f0f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            text-shadow: 0 0 8px rgba(255, 235, 59, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #1e88e5, #0d47a1);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(30, 136, 229, 0.5);
            background: linear-gradient(to right, #0d47a1, #1e88e5);
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background: rgba(10, 30, 58, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #1e88e5;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
        }
        .logo:hover {
            animation: pulse 1s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            position: relative;
            padding: 5px 0;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffeb3b;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffeb3b;
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 30, 58, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #1e88e5;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: rgba(255,255,255,0.05);
            padding: 12px 20px;
            font-size: 0.9rem;
            margin-bottom: 30px;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb a {
            color: #b0bec5;
        }
        .breadcrumb a:hover {
            color: #ffeb3b;
        }
        .breadcrumb i {
            margin: 0 10px;
            color: #78909c;
        }
        .main-content {
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 40px;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 2px solid rgba(30, 136, 229, 0.5);
            padding-bottom: 25px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #4fc3f7, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            color: #b0bec5;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #4fc3f7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(79, 195, 247, 0.3);
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #ffb74d;
            margin: 30px 0 15px;
        }
        .article-body h4 {
            font-size: 1.3rem;
            color: #a5d6a7;
            margin: 25px 0 10px;
        }
        .article-body p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: #ffeb3b;
            font-weight: 700;
        }
        .article-body em {
            color: #ce93d8;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(255, 193, 7, 0.1));
            border-left: 5px solid #ffeb3b;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-link-list {
            list-style: none;
            padding: 20px;
            background: rgba(0,0,0,0.2);
            border-radius: 10px;
            margin: 25px 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }
        .inline-link-list li {
            padding: 8px 0;
        }
        .inline-link-list a::before {
            content: '⚽ ';
            margin-right: 8px;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 30px auto;
            border: 3px solid #1e88e5;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .sidebar-widget {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .widget-title {
            font-size: 1.5rem;
            color: #ffb74d;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 183, 77, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            margin-bottom: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #1e88e5;
            border-radius: 50px 0 0 50px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: #1e88e5;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #0d47a1;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #1e88e5;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            min-height: 150px;
            resize: vertical;
            margin-bottom: 15px;
        }
        .site-footer {
            background: rgba(5, 15, 30, 0.98);
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #1e88e5;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .friend-links a {
            background: rgba(255,255,255,0.05);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .friend-links a:hover {
            background: rgba(30, 136, 229, 0.3);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #90a4ae;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
            .article-card {
                padding: 25px;
            }
            .section-padding {
                padding: 40px 0;
            }
        }
