:root {
            --ucl-blue: #0066B3;
            --ucl-navy: #0C2340;
            --ucl-silver: #D1D3D4;
            --ucl-gold: #C9A74D;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --border-color: #eaeaea;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fff;
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: var(--ucl-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--ucl-navy);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--ucl-navy) 70%, var(--ucl-blue));
            color: white;
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .my-logo i {
            color: var(--ucl-gold);
            font-size: 2rem;
        }
        .logo-text {
            background: linear-gradient(to right, #fff, var(--ucl-silver));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            text-decoration: none;
            color: var(--ucl-gold);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--ucl-gold);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--bg-light);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(rgba(12, 35, 64, 0.85), rgba(0, 102, 179, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover no-repeat;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 0 0 12px 12px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.95;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            position: relative;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            box-shadow: var(--shadow);
        }
        .search-box button {
            background: var(--ucl-gold);
            color: var(--ucl-navy);
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #d8b85c;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-main {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-header {
            padding: 2.5rem 2.5rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .article-header .meta {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1rem;
            display: flex;
            gap: 1.5rem;
        }
        .article-body {
            padding: 2.5rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body h2 {
            color: var(--ucl-navy);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--ucl-gold);
            font-size: 2rem;
        }
        .article-body h3 {
            color: var(--ucl-blue);
            margin: 2.5rem 0 1.2rem;
            font-size: 1.6rem;
        }
        .article-body h4 {
            color: var(--text-dark);
            margin: 2rem 0 1rem;
            font-size: 1.3rem;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-body strong {
            color: var(--ucl-navy);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, var(--bg-light), #eef5ff);
            border-left: 5px solid var(--ucl-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 0.8rem;
            font-size: 0.95rem;
            background-color: var(--bg-light);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--ucl-navy);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.4rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--ucl-navy);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--ucl-blue);
            box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.1);
        }
        .submit-btn {
            background: var(--ucl-blue);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: var(--ucl-navy);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--ucl-silver);
            cursor: pointer;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: var(--ucl-gold);
        }
        .site-footer {
            background: var(--ucl-navy);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: white;
        }
        .footer-links h4 {
            color: var(--ucl-gold);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--ucl-silver);
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--ucl-silver);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                width: 100%;
                order: 3;
                margin-top: 1.5rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 1rem 0;
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            .content-wrapper, .footer-container {
                grid-template-columns: 1fr;
            }
            .article-header, .article-body {
                padding: 1.8rem;
            }
        }
