        * {
            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: #2c3e50;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease, background-color 0.3s ease;
        }
        ul, ol {
            list-style-position: inside;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #1a5276;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #f39c12;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-left: 10px;
            border-left: 5px solid #3498db;
        }
        h3 {
            font-size: 1.8rem;
            color: #2980b9;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #2c3e50;
            background-color: #e8f4fc;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
            margin-bottom: 2rem;
        }
        strong {
            color: #c0392b;
            font-weight: 700;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #f39c12;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo:hover {
            color: #ffcc00;
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background-color: rgba(255,255,255,0.15);
            color: #f39c12;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .search-box {
            display: flex;
            margin-left: 2rem;
        }
        .search-box input {
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            width: 250px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #f39c12;
            color: white;
            border: none;
            border-radius: 0 25px 25px 0;
            padding: 0 20px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
        }
        .search-box button:hover {
            background-color: #e67e22;
        }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 12px 0;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #3498db;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span:last-child {
            color: #7f8c8d;
            font-weight: 600;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
            margin: 0 auto;
        }
        .img-caption {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .strategy-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 6px solid #27ae60;
            padding: 25px;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .strategy-box h3 {
            color: #27ae60;
        }
        .interview {
            background-color: #fef9e7;
            border: 2px dashed #f39c12;
            padding: 25px;
            margin: 2.5rem 0;
            border-radius: 10px;
        }
        .player-quote {
            font-style: italic;
            color: #2c3e50;
            font-size: 1.15rem;
            padding-left: 20px;
            border-left: 4px solid #f39c12;
        }
        .player-name {
            text-align: right;
            font-weight: bold;
            color: #d35400;
            margin-top: 1rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .stats-table th {
            background-color: #2c3e50;
            color: white;
            font-weight: 600;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .stats-table tr:hover {
            background-color: #e8f4fc;
        }
        .user-interaction {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            margin-top: 3rem;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #2980b9, #1c6ea4);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(41, 128, 185, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #f1c40f;
            margin-top: 10px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
        }
        .star-rating input:checked ~ label {
            color: #f39c12;
        }
        .widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.4rem;
            color: #1a5276;
            border-bottom: 2px solid #f39c12;
            padding-bottom: 10px;
            margin-bottom: 1.5rem;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            background-color: #e8f4fc;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            color: #3498db;
            border: 1px solid #bae1ff;
        }
        .tag:hover {
            background-color: #3498db;
            color: white;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dotted #eee;
        }
        .related-links a:hover {
            color: #e74c3c;
            padding-left: 5px;
        }
        .web-links-section {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #f39c12;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f39c12;
            margin-bottom: 1rem;
        }
        .footer-nav h4 {
            color: #ecf0f1;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-nav ul li {
            margin-bottom: 8px;
        }
        .footer-nav a:hover {
            color: #f39c12;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            font-size: 0.95rem;
            color: #95a5a6;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-box input {
                width: 200px;
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a5276;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-box {
                order: 3;
                width: 100%;
                margin: 1rem 0 0;
            }
            .search-box input {
                width: 100%;
                border-radius: 25px;
            }
            .search-box button {
                display: none;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .article-content {
                padding: 1.5rem;
            }
            .footer-content {
                flex-direction: column;
            }
        }
