:root {
    --primary-red: #e70012;
    --text-dark: #333;
    --text-grey: #666;
    --text-light: #999;
    --bg-light: #f9f9f9;
    --content-width: 1540px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', Helvetica, Arial, sans-serif;
}

body {
    background-color: #fff;
    color: var(--text-dark);
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
}

ul {
    list-style: none;
}

.video-section {
    padding-top: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
    padding-bottom: 15px;
}

.header-title h2 {
    font-family: serif;
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 900;
    white-space: nowrap;
}

.header-title p {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-wrapper {
    position: relative;
}

.search-wrapper input {
    padding: 8px 35px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 250px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}

.search-wrapper input:focus {
    border-color: var(--primary-red);
}

.search-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    cursor: pointer;
}

.feature-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 48px;
}

.main-video-link {
    display: block;
    width: 100%;
}

.main-video-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;

    &:hover {
        .main-video-title {
            color: var(--primary-red);
        }
    }
}

video {
    width: 100%;
    display: block;
    border-radius: 0;
    background: #000;
    object-fit: cover;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

video:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.main-video-card video {
    height: 420px;
}

.main-video-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    padding: 0 15px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meta-info {
    font-size: 12px;
    color: var(--text-light);
    padding-bottom: 11px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-news {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-link {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
    padding:14.9px 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.news-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
    color: var(--primary-red);
}

.main-video-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
    color: var(--primary-red);
}

.news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 0;
    border-bottom: none;
    transition: none;
    cursor: pointer;
    align-items: center;

    img {
        border: 1px solid #eee;
        border-radius: 4px;
    }
}

.news-item:hover {
    transform: none;
}

.news-content {
    flex: 1;
    margin-top: 4px;

    .meta-info {
        position: relative;
        top: 0;
        margin-top: 8px;
    }
}

.tag {
    font-size: 11px;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.news-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-thumb {
    width: 120px;
    height: 96px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.cat-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cat-title {
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: -11px;
    padding-left: 11px;
    border-left: 4px solid var(--primary-red);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-card-link {
    display: block;
    width: 100%;
}

.video-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 20px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.video-card video {
    height: 200px;
    width: 100%;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
    transition: color 0.2s;
}

.video-card:hover .card-title {
    color: var(--primary-red);
}

.subscribe-banner {
    position: relative;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.banner-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 11px;
    text-transform: uppercase;
    color: #fff;
}

.banner-content p {
    margin-bottom: 30px;
    color: #ddd;
    font-size: 14px;
}

.input-group {
    display: flex;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
}

.input-group button {
    background-color: #ff9800;
    border: none;
    padding: 0 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.input-group button:hover {
    background: #e68900;
}

.meta-lp {
    padding-left: 15px;
    margin-top: 8px;
    margin-bottom: 25px;
}

.cat-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    a {
        i {
            margin-left: 4px;
        }
    }
}

.cat-more-link {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
    position: relative;
    top: 6px;
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    align-items: baseline;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cat-more-link:hover {
    color: var(--primary-red);
}