body {
    background: #1a1a1a;
    color: #fff;
}

/* Intro Section */
.intro-section {
    margin-top: 60px;
    padding: 40px 30px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h1 {
    font-size: 48px;
    margin: 0 0 16px;
}

.intro-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #ccc;
    margin: 0 0 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    border: 2px solid #C61618;
    border-radius: 8px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: background 200ms ease, transform 200ms ease;
}

.social-links a:hover {
    background: #C61618;
    transform: translateY(-2px);
}

.social-links a img {
    width: 36px;
    height: 36px;
}

/* Content Section */
.content-section {
    padding: 20px 30px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.column h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 20px;
    color: #C61618;
    border-bottom: 3px solid #C61618;
    padding-bottom: 10px;
}

/* Masonry Layout */
.masonry {
    columns: 1;
    column-gap: 16px;
}

#vods-masonry {
    columns: 1 !important;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.masonry-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(198, 22, 24, 0.3);
}

/* Embed wrappers */
.embed-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.embed-short {
    padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts */
}

.embed-vod {
    padding-bottom: 56.25%; /* 16:9 aspect ratio for vods */
}

.embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-title {
    padding: 12px 14px;
    font-size: 20px;
    font-weight: bold;
    color: #eee;
}

/* Responsive */
@media (max-width: 900px) {
    .columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-content h1 {
        font-size: 36px;
    }

    .intro-content p {
        font-size: 22px;
    }
}

@media (min-width: 600px) {
    .masonry {
        columns: 2;
    }
}

@media (max-width: 500px) {
    .intro-section {
        padding: 30px 16px;
    }

    .content-section {
        padding: 10px 16px 40px;
    }

    .social-links a {
        padding: 10px 16px;
        font-size: 18px;
    }

    .social-links a img {
        width: 30px;
        height: 30px;
    }
}
