h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* --------------------------------------------------
   SHOWREEL
-------------------------------------------------- */

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- CAROUSEL --- */

.carousel-wrapper {
    position: relative;
    margin-top: 1rem;
}

.video-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    width: 160px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 10px;
    opacity: 0.6;
    transition: 0.25s;
}

.carousel-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.carousel-item.active {
    opacity: 1;
    outline: 3px solid white;
}

/* --- OVERLAY ARROWS --- */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: none;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);

    color: white;
    font-size: 1.6rem;
    cursor: pointer;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
    text-align: center;

    transition: 0.2s;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.left {
    left: 8px;
}

.carousel-arrow.right {
    right: 8px;
}

/* --------------------------------------------------
   VOICEREEL
-------------------------------------------------- */

#voicereel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.audio-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}


/* ---------- AUDIO PLAYER (Custom)---------- */
.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: #222;
    padding: 8px 12px;
    border-radius: 12px;
    color: white;
    font-family: sans-serif;
}

.play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #444;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.play-btn:hover {
    background: #666;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #555;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.progress {
    height: 100%;
    width: 0%;
    background: #f39c12;
    border-radius: 3px;
}

.time {
    width: 50px;
    text-align: right;
    font-size: 0.85rem;
}