.main-layout {
    display: flex;
    gap: 30px;
    max-width: 1726px;
    margin: 0 auto;
}

.content-area {
    flex: 0 0 800px;
}

.content-area h2 {
    color: #0060c9;
    display: inline-block;
    padding: 10px 35px;
    margin: 0 0 30px -8px;
    border-radius: 60px;
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    transform: rotate(-1deg);
}

.ad-sidebar {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fanart-spotlight {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 25px;
    box-shadow: 0 5px 0 #aaa;
    text-align: center;
}
.fanart-spotlight h3 {
    color: #701e1e;
    font-size: 48px;
    margin: 0 0 20px 0;
    border-left: 10px solid #ffcc00;
    padding-left: 20px;
    text-align: left;
}
.spotlight-content {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 20px;
}
.spotlight-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.fanart-credit {
    font-size: 26px;
    font-weight: 600;
    color: #003d7a;
    text-align: center;
    margin: 0;
}
.fanart-thanks {
    font-size: 14px;
    color: #222;
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
    font-weight: normal;
}

.featured-video {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 5px 0 #aaa;
    text-align: center;
}
.featured-video h3 {
    color: #701e1e;
    font-size: 32px;
    margin: 0 0 15px 0;
    border-left: 8px solid #ffcc00;
    padding-left: 15px;
    text-align: left;
}
.featured-content {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 15px;
}

.video-player {
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 0 #444;
    border: 3px solid #ffcc00;
    background: #000;
}

.featured-content h4 {
    color: #0060c9;
    font-size: 22px;
    margin: 10px 0 5px 0;
    font-weight: 700;
}
.featured-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 12px 0;
}
.featured-content .btn-small {
    display: inline-block;
    margin-top: 5px;
}

.video-playlist {
    max-height: 844px;
    overflow-y: auto;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 5px 0 #aaa;
}

.video-entry {
    display: flex;
    background: transparent;
    border-radius: 0;
    padding: 12px 0;
    box-shadow: none;
    transition: all 0.1s ease;
}
.video-entry:hover {
    background: #f8f8f8;
}

.video-entry:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.video-entry img {
    width: 228px;
    height: 128px;
    object-fit: cover;
    margin-right: 18px;
    border-radius: 15px;
    border: 3px solid #ffcc00;
}
.entry-details {
    flex: 1;
}
.entry-details h3 {
    color: #003d7a;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
}
.episode-label {
    font-weight: 600;
    color: #701e1e;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}
.entry-details p {
    color: #555;
    font-size: 14px;
    margin: 4px 0 8px 0;
}
.entry-details .btn-small {
    align-self: flex-start;
    margin-top: 4px;
}

.trvz-about {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 0 #aaa;
}
.trvz-about h3 {
    color: #0060c9;
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.trvz-about p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.count-badge {
    background: #0060c9;
    color: white;
    font-size: 18px;
    padding: 5px 20px;
    border-radius: 50px;
    margin-left: 15px;
    border: 3px solid #fff;
    display: inline-block;
    box-shadow: 0 5px 0 #003d7a;
}

