
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .navbar {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    .nav-logo {
        font-size: 24px;
        font-weight: bold;
        color: #667eea;
        text-decoration: none;
    }
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
    }
    .nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
        padding: 10px 0;
    }
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #667eea;
    }
    .main-content {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        margin-top: 30px;
        padding: 40px;
    }
    .page-title {
        text-align: center;
        margin-bottom: 40px;
        color: #333;
        font-size: 2.5em;
        font-weight: 300;
    }
    /* Carousel Styles */
    .carousel {
        position: relative;
        width: 100%;
        height: 400px;
        margin-bottom: 40px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        height: 100%;
    }
    .carousel-item {
        min-width: 100%;
        position: relative;
        height: 100%;
    }
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .carousel-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.4);
        color: white;
        padding: 20px 0 20px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
    .carousel-caption h2 {
        font-size: 2em;
        margin: 0;
        font-weight: 700;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    }
    .carousel-caption p, .carousel-caption .category {
        display: none;
    }
    .carousel-caption .category {
        display: inline-block;
        background: #667eea;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8em;
        text-transform: uppercase;
        font-weight: 500;
    }
    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        color: #333;
        transition: all 0.3s;
        z-index: 10;
    }
    .carousel-control:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .carousel-control.prev {
        left: 20px;
    }
    .carousel-control.next {
        right: 20px;
    }
    .carousel-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    .carousel-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: background 0.3s;
    }
    .carousel-indicator.active {
        background: white;
    }
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    .article-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        text-decoration: none;
        color: inherit;
    }
    .article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    .article-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .article-content {
        padding: 20px;
    }
    .article-title {
        font-size: 1.3em;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.4;
    }
    .article-summary {
        color: #666;
        font-size: 0.95em;
        line-height: 1.5;
    }
    .article-meta {
        margin-top: 15px;
        font-size: 0.85em;
        color: #999;
    }
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 40px;
    }
    .page-btn {
        padding: 10px 15px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        text-decoration: none;
        color: #333;
        transition: all 0.3s;
    }
    .page-btn:hover,
    .page-btn.active {
        background: #667eea;
        color: white;
        border-color: #667eea;
    }
    .article-detail {
        max-width: 800px;
        margin: 0 auto;
    }
    .article-detail img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    .article-detail h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: #333;
        line-height: 1.3;
    }
    .article-detail .content {
        font-size: 1.1em;
        line-height: 1.8;
        color: #444;
    }
    .back-btn {
        display: inline-block;
        margin-bottom: 30px;
        padding: 10px 20px;
        background: #667eea;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        transition: background 0.3s;
    }
    .back-btn:hover {
        background: #5a6fd8;
    }
    @media (max-width: 768px) {
        .nav-menu {
            gap: 15px;
        }
        .carousel {
            height: 300px;
        }
        .carousel-caption {
            padding: 20px 15px 15px;
        }
        .carousel-caption h2 {
            font-size: 1.4em;
        }
        .carousel-control {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
        .articles-grid {
            grid-template-columns: 1fr;
        }
        .main-content {
            padding: 20px;
        }
        .page-title {
            font-size: 2em;
        }
    }
    .magazine-navbar {
        background: #fff;
        border-bottom: 1px solid #eee;
        margin-bottom: 30px;
        font-family: Times New Roman, Times, serif;
    }
    .lang-bar {
        text-align: right;
        font-size: 15px;
        color: #a00;
        padding: 10px 40px 0 0;
    }
    .lang {
        color: #a00;
        font-weight: bold;
        cursor: pointer;
    }
    .lang.active {
        text-decoration: underline;
    }
    .magazine-logo-row {
        text-align: center;
        margin: 0 auto;
        padding: 10px 0 0 0;
    }
    .magazine-logo {
        font-size: 48px;
        font-family: "Times New Roman", Times, serif;
        font-weight: bold;
        letter-spacing: 2px;
        color: #111;
        display: inline-block;
    }
    .magazine-logo-red {
        color: #a00;
        font-family: inherit;
    }
    .magazine-slogan {
        font-size: 16px;
        color: #aaa;
        font-style: italic;
        margin-top: 2px;
        margin-bottom: 10px;
    }
    .magazine-mainnav {
        display: flex;
        justify-content: center;
        gap: 40px;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
        background: #fff;
        font-size: 17px;
        font-family: Times New Roman, Times, serif;
    }
    .mainnav-link {
        color: #222;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 1px;
        padding: 0 10px;
        transition: color 0.2s;
    }
    .mainnav-link:hover {
        color: #a00;
    }
    .magazine-subnav {
        display: flex;
        justify-content: center;
        gap: 30px;
        padding: 12px 0 8px 0;
        border-bottom: 2px solid #222;
        background: #fff;
        font-size: 15px;
        font-family: Times New Roman, Times, serif;
    }
    .subnav-link {
        color: #222;
        text-decoration: none;
        font-weight: 400;
        letter-spacing: 1px;
        padding: 0 6px;
        transition: color 0.2s;
    }
    .subnav-link:hover {
        color: #a00;
        text-decoration: underline;
    }
    