        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #FFD166;
            --dark-color: #1A1A2E;
            --light-color: #F7F9FC;
            --text-color: #333333;
            --gray-color: #6C757D;
            --success-color: #06D6A0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-color);
            font-size: 1.05rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Rounded MT Bold', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent-color);
            font-size: 1.8rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            padding: 0.5rem;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #e0e0e0;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--gray-color);
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray-color);
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e0e0e0;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead-paragraph {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--dark-color);
            background: linear-gradient(90deg, rgba(255, 215, 102, 0.1), transparent);
            padding: 1.5rem;
            border-left: 4px solid var(--accent-color);
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 3px solid var(--accent-color);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-color);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9ff, #e8f4ff);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .strategy-tip {
            background-color: #FFF9E6;
            border: 1px solid var(--accent-color);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .strategy-tip::before {
            content: '🎯';
            position: absolute;
            top: -12px;
            left: 20px;
            background: white;
            padding: 0 10px;
            font-size: 1.2rem;
        }
        .player-quote {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--secondary-color);
            border-left: 3px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            background: rgba(255, 107, 53, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .search-section, .comments-section, .rating-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 3rem 0;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .section-title i {
            color: var(--primary-color);
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 600px;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        .btn-primary:hover {
            background-color: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
            max-width: 600px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-control {
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating span {
            transition: var(--transition);
        }
        .star-rating span:hover,
        .star-rating span.active {
            color: var(--accent-color);
            transform: scale(1.1);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .related-links {
            list-style: none;
            margin-top: 1rem;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .related-links li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        .related-links a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            padding: 0.3rem 0;
        }
        .related-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent-color);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
        }
        friend-link a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
        }
        friend-link a:hover {
            color: white;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--secondary-color);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                border-radius: 0 0 8px 8px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animated {
            animation: fadeIn 0.6s ease-out;
        }
        .text-bold {
            font-weight: 700;
            color: var(--primary-color);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary-color);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            display: block;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            color: var(--gray-color);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
