/* Critical CSS for above-the-fold content */
        :root {
            --ucl-blue: #00529F;
            --ucl-light-blue: #E6F0FA;
            --ucl-silver: #D9D9D9;
            --ucl-gold: #C9A858;
            --ucl-red: #D00;
            --wiki-gray: #f6f6f6;
            --wiki-border: #a7d7f9;
            --wiki-text: #202122;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--wiki-text);
            line-height: 1.6;
            background-color: #fff;
        }
        
        .wiki-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .wiki-header {
            background-color: var(--ucl-blue);
            border-bottom: 1px solid #a2a9b1;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .wiki-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .wiki-logo i {
            color: var(--ucl-gold);
        }
        
        .wiki-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--ucl-gold);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--ucl-gold);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
            padding: 5px;
        }
        
        .wiki-content {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }
        
        .main-content {
            flex: 1;
            min-width: 0;
        }
        
        .wiki-sidebar {
            width: 320px;
            flex-shrink: 0;
        }
        
        .wiki-card {
            background-color: var(--ucl-light-blue);
            border: 1px solid var(--ucl-blue);
            border-radius: 5px;
            padding: 20px;
            margin-bottom: 25px;
        }
        
        .wiki-card h3 {
            color: var(--ucl-blue);
            border-bottom: 2px solid var(--ucl-blue);
            padding-bottom: 8px;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .info-box {
            background-color: var(--ucl-light-blue);
            border: 1px solid var(--ucl-blue);
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 25px;
            float: right;
            width: 350px;
            margin-left: 25px;
            margin-top: 10px;
        }
        
        .info-box-header {
            background-color: var(--ucl-blue);
            color: white;
            padding: 10px 15px;
            margin: -15px -15px 15px -15px;
            font-weight: bold;
            border-radius: 5px 5px 0 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-box-content img {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }
        
        .info-box-row {
            display: flex;
            margin-bottom: 8px;
            padding: 5px 0;
            border-bottom: 1px dotted #ccc;
        }
        
        .info-box-row:last-child {
            border-bottom: none;
        }
        
        .info-box-label {
            font-weight: bold;
            width: 130px;
            flex-shrink: 0;
            color: var(--ucl-blue);
        }
        
        .info-box-value {
            flex: 1;
        }
        
        h1 {
            font-size: 2.2rem;
            color: var(--ucl-blue);
            border-bottom: 2px solid var(--ucl-blue);
            padding-bottom: 10px;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        h2 {
            font-size: 1.7rem;
            color: var(--ucl-blue);
            border-bottom: 1px solid var(--ucl-silver);
            padding-bottom: 8px;
            margin: 35px 0 20px 0;
            font-weight: 600;
        }
        
        h3 {
            font-size: 1.3rem;
            color: #000;
            margin: 25px 0 15px 0;
            font-weight: 600;
        }
        
        p {
            margin-bottom: 18px;
            text-align: justify;
        }
        
        ul, ol {
            margin-bottom: 18px;
            padding-left: 40px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .table-of-contents {
            background-color: var(--wiki-gray);
            border: 1px solid #a2a9b1;
            padding: 20px;
            margin-bottom: 30px;
            width: 100%;
            border-radius: 5px;
        }
        
        .toc-header {
            font-weight: bold;
            margin-bottom: 10px;
            font-size: 1.2rem;
            color: var(--ucl-blue);
        }
        
        .toc-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        
        .toc-list li {
            margin-bottom: 5px;
        }
        
        .toc-list a {
            color: var(--ucl-blue);
            text-decoration: none;
            display: block;
            padding: 3px 0;
        }
        
        .toc-list a:hover {
            text-decoration: underline;
            background-color: rgba(0, 82, 159, 0.05);
            padding-left: 5px;
            border-radius: 3px;
        }
        
        .toc-list .toc-level-2 {
            padding-left: 20px;
            font-size: 0.95rem;
        }
        
        .section-anchor {
            display: block;
            position: relative;
            top: -90px;
            visibility: hidden;
        }
        
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            margin: 20px auto;
            display: block;
            border: 1px solid #ddd;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-radius: 5px;
        }
        
        .caption {
            text-align: center;
            font-style: italic;
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
            margin-bottom: 25px;
        }
        
        .highlight-box {
            background-color: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 18px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .highlight-box h4 {
            margin-top: 0;
            color: #d84315;
            font-size: 1.1rem;
        }
        
        .pro-tip {
            background-color: #e8f5e9;
            border-left: 4px solid #4caf50;
            padding: 18px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .pro-tip h4 {
            margin-top: 0;
            color: #2e7d32;
            font-size: 1.1rem;
        }
        
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--ucl-blue);
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            min-height: 44px;
            min-width: 44px;
            text-align: center;
            line-height: 24px;
            gap: 8px;
        }
        
        .button:hover {
            background-color: #003d75;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .button-secondary {
            background-color: var(--ucl-gold);
            color: #000;
        }
        
        .button-secondary:hover {
            background-color: #b8942b;
            color: #000;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .share-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .share-button:hover {
            transform: scale(1.1);
        }
        
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .reddit { background-color: #ff4500; }
        .whatsapp { background-color: #25d366; }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--ucl-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .rating-system {
            display: flex;
            gap: 15px;
            align-items: center;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .star-rating {
            display: flex;
            gap: 5px;
        }
        
        .star {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .star.active {
            color: #ffc107;
        }
        
        .search-box {
            margin: 20px 0;
            background: var(--ucl-light-blue);
            padding: 20px;
            border-radius: 5px;
        }
        
        .search-input {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--ucl-blue);
            border-radius: 5px;
            font-size: 1rem;
            margin-bottom: 10px;
            transition: border-color 0.3s;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--ucl-gold);
        }
        
        .search-button {
            width: 100%;
        }
        
        .comment-form {
            margin-top: 30px;
            padding: 25px;
            background-color: var(--ucl-light-blue);
            border-radius: 5px;
            border: 1px solid var(--ucl-blue);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--ucl-blue);
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #a2a9b1;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--ucl-blue);
            box-shadow: 0 0 0 3px rgba(0, 82, 159, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .comments-section {
            margin-top: 30px;
        }
        
        .comment {
            padding: 20px;
            border-bottom: 1px solid #eee;
            background: white;
            border-radius: 5px;
            margin-bottom: 15px;
            border-left: 4px solid var(--ucl-blue);
        }
        
        .comment:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .comment-author {
            font-weight: bold;
            color: var(--ucl-blue);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .comment-date {
            font-size: 0.85rem;
            color: #666;
            margin-left: auto;
        }
        
        .comment-text {
            margin-top: 12px;
            line-height: 1.5;
        }
        
        .update-log {
            background-color: #f3f4f6;
            border-left: 4px solid var(--ucl-blue);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .update-log h4 {
            color: var(--ucl-blue);
            margin-top: 0;
            font-size: 1.2rem;
        }
        
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: var(--ucl-blue);
            text-decoration: none;
            padding: 5px 0;
            display: block;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
            color: #003d75;
        }
        
        .copyright {
            text-align: center;
            padding: 25px;
            border-top: 1px solid #eee;
            margin-top: 30px;
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .friend-link {
            padding: 5px 0;
        }
        
        .friend-link a {
            color: var(--ucl-blue);
            text-decoration: none;
        }
        
        .friend-link a:hover {
            text-decoration: underline;
        }
        
        .player-price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .player-price-table th {
            background-color: var(--ucl-blue);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .player-price-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .player-price-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .player-price-table tr:hover {
            background-color: var(--ucl-light-blue);
        }
        
        .player-price-table .price {
            font-weight: bold;
            color: var(--ucl-blue);
        }
        
        .chip-info {
            background: white;
            border-radius: 5px;
            padding: 20px;
            margin: 20px 0;
            border: 2px dashed var(--ucl-blue);
        }
        
        .chip-info h4 {
            color: var(--ucl-blue);
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .deadline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        
        .deadline-item {
            background: white;
            border-radius: 5px;
            padding: 15px;
            border: 1px solid #ddd;
            transition: transform 0.3s;
        }
        
        .deadline-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-color: var(--ucl-blue);
        }
        
        .deadline-date {
            font-weight: bold;
            color: var(--ucl-blue);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .deadline-stage {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Responsive styles */
        @media (max-width: 1200px) {
            .wiki-content {
                flex-direction: column;
            }
            
            .wiki-sidebar {
                width: 100%;
            }
            
            .info-box {
                float: none;
                width: 100%;
                margin-left: 0;
                margin-top: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--ucl-blue);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                border-top: 1px solid rgba(255,255,255,0.1);
                z-index: 1000;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links a {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                width: 100%;
            }
            
            .nav-links a:last-child {
                border-bottom: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .info-box {
                width: 100%;
                float: none;
                margin-left: 0;
                margin-top: 20px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            h3 {
                font-size: 1.2rem;
            }
            
            .button {
                padding: 12px 20px;
                width: 100%;
                text-align: center;
            }
            
            .share-buttons {
                justify-content: center;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }
            
            .deadline-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .wiki-container {
                padding: 0 15px;
            }
            
            .wiki-card, .info-box {
                padding: 15px;
            }
            
            .rating-system {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .player-price-table {
                font-size: 0.9rem;
            }
            
            .player-price-table th, 
            .player-price-table td {
                padding: 10px;
            }
        }
        
        /* Print styles */
        @media print {
            .wiki-header, .wiki-sidebar, .share-buttons, .back-to-top, 
            .comment-form, .search-box, .button, .hamburger {
                display: none;
            }
            
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
            
            a {
                color: #000;
                text-decoration: none;
            }
            
            .wiki-content {
                display: block;
            }
            
            h1, h2, h3 {
                page-break-after: avoid;
            }
            
            p, ul, ol {
                orphans: 3;
                widows: 3;
            }
        }
        
        /* Animation for smooth transitions */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease-out;
        }

