:root {
            --ucl-blue: #00529F;
            --ucl-silver: #C0C0C0;
            --ucl-black: #111111;
            --ucl-white: #FFFFFF;
            --ucl-gold: #D4AF37;
            --gradient-primary: linear-gradient(135deg, var(--ucl-blue) 0%, #1a237e 100%);
            --shadow-light: 0 4px 12px rgba(0, 82, 159, 0.08);
            --shadow-medium: 0 8px 24px rgba(0, 82, 159, 0.15);
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        * {
            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: #333;
            background-color: #f8fafc;
            overflow-x: hidden;
        }
        a {
            color: var(--ucl-blue);
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        a:hover {
            color: var(--ucl-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--gradient-primary);
            color: var(--ucl-white);
            box-shadow: var(--shadow-medium);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: var(--ucl-white);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--ucl-gold);
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            color: var(--ucl-silver);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--ucl-white);
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--ucl-gold);
            border-bottom-color: var(--ucl-gold);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--ucl-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow-medium);
            padding: 1rem 0;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: var(--ucl-white);
            font-size: 1.1rem;
            display: block;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow-light);
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow-light);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: var(--ucl-blue);
            border-bottom: 2px solid var(--ucl-silver);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        h1 {
            color: var(--ucl-blue);
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid var(--ucl-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--ucl-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 0.5rem;
        }
        h3 {
            color: #444;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #555;
            margin-bottom: 2rem;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .search-widget form,
        .comment-form form,
        .rating-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-widget input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            width: 100%;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-align: center;
            display: inline-block;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            color: var(--ucl-white);
        }
        .btn-gold {
            background: linear-gradient(135deg, var(--ucl-gold) 0%, #b8860b 100%);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 0.5rem 0;
        }
        .rating-stars i {
            color: #ddd;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: var(--ucl-gold);
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            position: relative;
        }
        .featured-image figcaption {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.8rem;
            font-style: italic;
            text-align: center;
            font-size: 0.9rem;
        }
        .bracket-visual {
            background: #f0f8ff;
            border: 2px dashed var(--ucl-blue);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            text-align: center;
        }
        .bracket-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .matchup {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: var(--shadow-light);
            border-left: 4px solid var(--ucl-blue);
        }
        .matchup:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-medium);
        }
        .footer-links-section {
            background: var(--ucl-black);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 6px;
            transition: var(--transition-smooth);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--ucl-silver);
        }
        .web-link a:hover {
            color: var(--ucl-gold);
        }
        .site-footer {
            background: #111;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 1rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .main-content {
                gap: 2rem;
            }
            article,
            .sidebar {
                padding: 1.5rem;
            }
            .bracket-grid {
                grid-template-columns: 1fr;
            }
        }
