        * {
            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.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a2b3e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #00ccff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff6600;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #00ccff, #0077ff);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 119, 255, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #ff6600, #ff3300);
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background-color: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #00ccff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2rem;
            background: linear-gradient(45deg, #00ccff, #ff00cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ccd6f6;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(0, 204, 255, 0.15);
            color: #00ccff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #00ccff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(30, 40, 60, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a0b3ff;
        }
        .breadcrumb span {
            color: #8892b0;
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, rgba(20, 60, 120, 0.7) 0%, rgba(12, 26, 45, 0) 70%);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00ccff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            color: #ccd6f6;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-section {
            background-color: rgba(20, 35, 60, 0.6);
            padding: 30px;
            border-radius: 15px;
            margin: 30px auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 16px 20px;
            border: 2px solid #00ccff;
            border-radius: 50px;
            background-color: rgba(10, 20, 40, 0.8);
            color: white;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            box-shadow: 0 0 15px rgba(0, 204, 255, 0.7);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: rgba(20, 30, 48, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border-left: 5px solid #ff6600;
        }
        article h2 {
            font-size: 2.3rem;
            margin: 35px 0 20px;
            color: #00ccff;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        article h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #ffcc00;
        }
        article p {
            margin-bottom: 25px;
            color: #ccd6f6;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #ff9966;
            font-weight: 800;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(102, 0, 204, 0.2));
            border-left: 5px solid #00ccff;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
        }
        .player-interview {
            background-color: rgba(40, 20, 60, 0.5);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border: 1px solid #8a2be2;
        }
        .player-interview h4 {
            color: #cc99ff;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            border: 3px solid #00ccff;
        }
        .image-caption {
            font-style: italic;
            color: #8892b0;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: rgba(20, 30, 48, 0.8);
            padding: 25px;
            border-radius: 15px;
            border-top: 5px solid #ff6600;
        }
        .widget h3 {
            color: #00ccff;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .rating-form label, .comment-form label {
            display: block;
            margin-bottom: 8px;
            color: #ccd6f6;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .rating-form input, .rating-form textarea,
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 8px;
            border: 1px solid #444;
            background-color: rgba(10, 20, 40, 0.8);
            color: white;
        }
        .internal-links {
            background-color: rgba(15, 25, 45, 0.9);
            padding: 50px 20px;
            margin-top: 60px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(30, 40, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(0, 102, 204, 0.3);
            transform: translateY(-5px);
        }
        .site-footer {
            background-color: #0a1420;
            padding: 40px 20px 20px;
            text-align: center;
            border-top: 2px solid #00ccff;
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #8892b0;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #2a3b5a;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(12, 26, 45, 0.98);
                padding: 20px;
                text-align: center;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .btn {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
        }
