        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a1128;
            color: #e6e6e6;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul, ol {
            padding-left: 1.5em;
            margin-bottom: 1.5em;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 3rem 0;
        }
        .site-header {
            background: linear-gradient(135deg, #001233 0%, #023e7d 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 30, 84, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area a.my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffd700, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo-area a.my-logo:hover {
            transform: scale(1.05);
        }
        .logo-area .tagline {
            font-size: 0.9rem;
            color: #adb5bd;
            margin-top: -5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #dee2e6;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffd700;
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #748cab;
        }
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: radial-gradient(circle at center, #023e7d 0%, #001233 70%);
            border-bottom: 4px solid #ffd700;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #fff, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #c0c0c0;
        }
        .last-updated {
            font-size: 0.95rem;
            color: #74c0fc;
            background: rgba(116, 192, 252, 0.1);
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        .article-body h2 {
            font-size: 2.3rem;
            color: #ffd700;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid rgba(255, 215, 0, 0.3);
        }
        .article-body h3 {
            font-size: 1.8rem;
            color: #4dabf7;
            margin: 2rem 0 1rem;
        }
        .article-body h4 {
            font-size: 1.4rem;
            color: #74c0fc;
            margin: 1.5rem 0 0.8rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: #ffd700;
            font-weight: 700;
        }
        .article-body em {
            color: #a5d8ff;
            font-style: italic;
        }
        .article-body blockquote {
            border-left: 5px solid #ff6b6b;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #ccc;
            background: rgba(255, 107, 107, 0.05);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .featured-img {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-img figcaption {
            font-size: 0.9rem;
            color: #adb5bd;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(145deg, rgba(0, 33, 71, 0.8), rgba(2, 62, 125, 0.8));
            border-left: 6px solid #ffd700;
            padding: 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 2.5rem 0;
        }
        .related-links {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .related-links h4 {
            color: #ffd700;
            margin-top: 0;
        }
        .related-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
            list-style: none;
            padding-left: 0;
        }
        .related-links li:before {
            content: '⚽';
            margin-right: 10px;
            color: #ffd700;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        .widget h3 {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: #74c0fc;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: #adb5bd;
        }
        input, select, textarea {
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #33415c;
            background: #001233;
            color: #e6e6e6;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #ff6b6b, #ff8e53);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #ff5252, #ff7a3d);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 107, 0.3);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars i {
            color: #495057;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i.active {
            color: #ffd700;
        }
        .site-footer {
            background: #000b1c;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 4px solid #023e7d;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #33415c;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                position: fixed;
                top: 80px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 80px);
                background: #001233;
                padding: 2rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active ul {
                right: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-body {
                padding: 1.8rem;
            }
            .article-body h2 {
                font-size: 2rem;
            }
            .article-body h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .article-body {
                padding: 1.5rem;
            }
            .related-links ul {
                grid-template-columns: 1fr;
            }
        }
