        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d32f2f;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            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 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ffd700;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #ffd700;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #1a237e;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: #e0e0e0;
            font-size: 1.1rem;
            display: block;
            padding: 0.5rem;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            color: #ffd700;
            border-left-color: #ffd700;
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 1.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a73e8;
        }
        .breadcrumb span {
            color: #777;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        h1 {
            color: #0c2461;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #d32f2f;
            padding-left: 1rem;
        }
        h2 {
            color: #1a237e;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }
        h3 {
            color: #333;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #444;
            background-color: #f1f8ff;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #1a73e8;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
        }
        strong {
            color: #0c2461;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            font-size: 0.9rem;
            background-color: #f9f9f9;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .standings-table th {
            background-color: #1a237e;
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .standings-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .standings-table td {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid #e0e0e0;
        }
        .standings-table tr:hover {
            background-color: #e3f2fd;
        }
        .conference {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .insight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 5px solid #7b1fa2;
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #ff9800;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-size: 1.2rem;
        }
        .author {
            font-weight: bold;
            color: #333;
            text-align: right;
            margin-top: 0.5rem;
        }
        .module {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed #ccc;
        }
        .module:last-child {
            border-bottom: none;
        }
        .module h3 {
            color: #1a237e;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box input, .comment-box input, .comment-box textarea, .rating-box select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-box input:focus, .comment-box input:focus, .comment-box textarea:focus, .rating-box select:focus {
            border-color: #1a73e8;
            outline: none;
        }
        .btn {
            background-color: #1a73e8;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background-color: #0c5bb8;
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h4 {
            color: #1a237e;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
        }
        .related-links a {
            display: block;
            padding: 0.8rem;
            background-color: #f8f9fa;
            border-radius: 6px;
            border-left: 4px solid #1a73e8;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background-color: #e3f2fd;
            border-left-color: #d32f2f;
            transform: translateX(5px);
        }
        footer {
            background-color: #0c2461;
            color: #e0e0e0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h5 {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.6rem;
        }
        .footer-links a {
            color: #b0bec5;
        }
        .footer-links a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #1a237e;
        }
        friend-link h5 {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        friend-link li a {
            background-color: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        friend-link li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #1a237e;
            color: #90a4ae;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .content-area, .sidebar { padding: 1.5rem; }
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: block; }
            .header-container { padding: 0 1rem; }
            .main-container { padding: 0 1rem; gap: 1.5rem; }
            .conference { grid-template-columns: 1fr; }
        }
