/* ===================================
   Videotron Display Styles
   Resolution: 1456 x 728 pixels
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background: #000;
}

/* ===================================
   Main Container - Fixed 1456x728
   =================================== */
.videotron-container {
    width: 1456px;
    height: 728px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a2a66 0%, #1c5ed6 50%, #0a2a66 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===================================
   Animated Background Elements
   =================================== */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(28, 94, 214, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(10, 42, 102, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #1c5ed6, #0a2a66);
    top: -150px;
    left: -150px;
    animation: float1 25s infinite ease-in-out;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    bottom: -100px;
    right: -100px;
    animation: float2 20s infinite ease-in-out;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 30s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(100px, -50px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-50px, 100px) scale(0.9) rotate(240deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 60px) scale(1.15); }
    66% { transform: translate(60px, -80px) scale(0.85); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.particle-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gold-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #ffd700 20%,
        #ffaa00 50%,
        #ffd700 80%,
        transparent 100%);
    animation: goldLineMove 8s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes goldLineMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===================================
   Gold Particles Animation
   =================================== */
.gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.gold-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffd700 0%, rgba(255, 215, 0, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    animation: goldParticleFloat linear infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
                0 0 20px rgba(255, 215, 0, 0.5),
                0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes goldParticleFloat {
    0% {
        transform: translateY(728px) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(650px) translateX(20px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(100px) translateX(-20px) scale(1);
    }
    100% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Generate 30 gold particles with random positions and delays */
.gold-particle:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; }
.gold-particle:nth-child(2) { left: 10%; animation-duration: 15s; animation-delay: 2s; }
.gold-particle:nth-child(3) { left: 15%; animation-duration: 10s; animation-delay: 4s; }
.gold-particle:nth-child(4) { left: 20%; animation-duration: 14s; animation-delay: 1s; }
.gold-particle:nth-child(5) { left: 25%; animation-duration: 11s; animation-delay: 3s; }
.gold-particle:nth-child(6) { left: 30%; animation-duration: 13s; animation-delay: 5s; }
.gold-particle:nth-child(7) { left: 35%; animation-duration: 16s; animation-delay: 0.5s; }
.gold-particle:nth-child(8) { left: 40%; animation-duration: 9s; animation-delay: 2.5s; }
.gold-particle:nth-child(9) { left: 45%; animation-duration: 12s; animation-delay: 4.5s; }
.gold-particle:nth-child(10) { left: 50%; animation-duration: 14s; animation-delay: 1.5s; }
.gold-particle:nth-child(11) { left: 55%; animation-duration: 10s; animation-delay: 3.5s; }
.gold-particle:nth-child(12) { left: 60%; animation-duration: 15s; animation-delay: 0.8s; }
.gold-particle:nth-child(13) { left: 65%; animation-duration: 11s; animation-delay: 2.8s; }
.gold-particle:nth-child(14) { left: 70%; animation-duration: 13s; animation-delay: 4.8s; }
.gold-particle:nth-child(15) { left: 75%; animation-duration: 16s; animation-delay: 1.2s; }
.gold-particle:nth-child(16) { left: 80%; animation-duration: 9s; animation-delay: 3.2s; }
.gold-particle:nth-child(17) { left: 85%; animation-duration: 12s; animation-delay: 5.2s; }
.gold-particle:nth-child(18) { left: 90%; animation-duration: 14s; animation-delay: 0.3s; }
.gold-particle:nth-child(19) { left: 95%; animation-duration: 11s; animation-delay: 2.3s; }
.gold-particle:nth-child(20) { left: 8%; animation-duration: 13s; animation-delay: 4.3s; }
.gold-particle:nth-child(21) { left: 18%; animation-duration: 10s; animation-delay: 1.8s; }
.gold-particle:nth-child(22) { left: 28%; animation-duration: 15s; animation-delay: 3.8s; }
.gold-particle:nth-child(23) { left: 38%; animation-duration: 12s; animation-delay: 5.8s; }
.gold-particle:nth-child(24) { left: 48%; animation-duration: 14s; animation-delay: 0.7s; }
.gold-particle:nth-child(25) { left: 58%; animation-duration: 11s; animation-delay: 2.7s; }
.gold-particle:nth-child(26) { left: 68%; animation-duration: 13s; animation-delay: 4.7s; }
.gold-particle:nth-child(27) { left: 78%; animation-duration: 16s; animation-delay: 1.7s; }
.gold-particle:nth-child(28) { left: 88%; animation-duration: 9s; animation-delay: 3.7s; }
.gold-particle:nth-child(29) { left: 12%; animation-duration: 12s; animation-delay: 5.7s; }
.gold-particle:nth-child(30) { left: 22%; animation-duration: 14s; animation-delay: 0.2s; }

/* ===================================
   Header
   =================================== */
.videotron-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: linear-gradient(180deg,
        rgba(10, 42, 102, 0.95) 0%,
        rgba(10, 42, 102, 0.7) 70%,
        transparent 100%);
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

.header-title h1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.header-title h2 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
}

.clock-display {
    text-align: right;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.clock-time {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: block;
    font-family: 'Courier New', monospace;
}

.clock-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Slider Container
   =================================== */
.slider-container {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 160px);
}

.videotron-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ===================================
   Slide Types
   =================================== */
.slide-welcome {
    text-align: center;
    flex-direction: column;
}

.welcome-content h1 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.welcome-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.welcome-content p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

/* Image/Video Slides */
.slide-image {
    flex-direction: column;
}

.slide-image .slide-content {
    justify-content: center;
}

.slide-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 10;
}

.slide-caption h3 {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

/* Full screen video slides */
.slide-video {
    width: 100%;
    height: 100%;
}

.slide-video .slide-content {
    padding: 0;
}

.slide-video-full {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-media-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-embed {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-caption-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    z-index: 10;
    width: auto;
    max-width: 90%;
}

.slide-caption-overlay h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    white-space: nowrap;
}

/* Pimpinan Slides */
.slide-pimpinan-slide {
    background: linear-gradient(135deg, #0a2a66 0%, #1c5ed6 50%, #0a2a66 100%);
}

.slide-pimpinan {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px;
    z-index: 10;
    overflow: visible !important;
}

/* Gold particles for pimpinan slides */
.pimpinan-gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.pimpinan-gold-particles .gold-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffd700 0%, rgba(255, 215, 0, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    animation: pimpinanParticleFloat linear infinite;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8),
                0 0 16px rgba(255, 215, 0, 0.5);
}

@keyframes pimpinanParticleFloat {
    0% {
        transform: translateY(728px) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(650px) translateX(15px) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(80px) translateX(-15px) scale(1);
    }
    100% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
}

.pimpinan-gold-particles .gold-particle:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; }
.pimpinan-gold-particles .gold-particle:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; }
.pimpinan-gold-particles .gold-particle:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: 2s; }
.pimpinan-gold-particles .gold-particle:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 0.5s; }
.pimpinan-gold-particles .gold-particle:nth-child(5) { left: 45%; animation-duration: 11s; animation-delay: 1.5s; }
.pimpinan-gold-particles .gold-particle:nth-child(6) { left: 55%; animation-duration: 9s; animation-delay: 2.5s; }
.pimpinan-gold-particles .gold-particle:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: 0.8s; }
.pimpinan-gold-particles .gold-particle:nth-child(8) { left: 75%; animation-duration: 10s; animation-delay: 1.8s; }
.pimpinan-gold-particles .gold-particle:nth-child(9) { left: 85%; animation-duration: 12s; animation-delay: 2.8s; }
.pimpinan-gold-particles .gold-particle:nth-child(10) { left: 95%; animation-duration: 11s; animation-delay: 0.3s; }
.pimpinan-gold-particles .gold-particle:nth-child(11) { left: 10%; animation-duration: 9s; animation-delay: 3s; }
.pimpinan-gold-particles .gold-particle:nth-child(12) { left: 20%; animation-duration: 13s; animation-delay: 1s; }
.pimpinan-gold-particles .gold-particle:nth-child(13) { left: 30%; animation-duration: 10s; animation-delay: 2s; }
.pimpinan-gold-particles .gold-particle:nth-child(14) { left: 40%; animation-duration: 12s; animation-delay: 0.6s; }
.pimpinan-gold-particles .gold-particle:nth-child(15) { left: 50%; animation-duration: 8s; animation-delay: 1.6s; }
.pimpinan-gold-particles .gold-particle:nth-child(16) { left: 60%; animation-duration: 14s; animation-delay: 2.6s; }
.pimpinan-gold-particles .gold-particle:nth-child(17) { left: 70%; animation-duration: 11s; animation-delay: 0.2s; }
.pimpinan-gold-particles .gold-particle:nth-child(18) { left: 80%; animation-duration: 9s; animation-delay: 1.2s; }
.pimpinan-gold-particles .gold-particle:nth-child(19) { left: 90%; animation-duration: 13s; animation-delay: 2.2s; }
.pimpinan-gold-particles .gold-particle:nth-child(20) { left: 12%; animation-duration: 10s; animation-delay: 3.2s; }
.pimpinan-gold-particles .gold-particle:nth-child(21) { left: 22%; animation-duration: 12s; animation-delay: 0.7s; }
.pimpinan-gold-particles .gold-particle:nth-child(22) { left: 32%; animation-duration: 8s; animation-delay: 1.7s; }
.pimpinan-gold-particles .gold-particle:nth-child(23) { left: 42%; animation-duration: 14s; animation-delay: 2.7s; }
.pimpinan-gold-particles .gold-particle:nth-child(24) { left: 52%; animation-duration: 11s; animation-delay: 0.1s; }

.pimpinan-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.pimpinan-title {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 30%, #ffd700 50%, #ffaa00 70%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 35px rgba(255, 215, 0, 0.8)); }
}

.pimpinan-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    padding: 20px;
    min-height: 200px;
}

/* Dynamic grid based on item count */
.pimpinan-grid.grid-1 { max-width: 300px; }
.pimpinan-grid.grid-2 { max-width: 650px; }
.pimpinan-grid.grid-3 { max-width: 1000px; }
.pimpinan-grid.grid-4 { max-width: 1300px; gap: 50px 70px; }
.pimpinan-grid.grid-5,
.pimpinan-grid.grid-6 { max-width: 1400px; gap: 45px 60px; }

.pimpinan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
    animation: cardSlideIn 0.8s ease-out forwards;
    animation-fill-mode: forwards;
    opacity: 1;
    position: relative;
    z-index: 30;
}
    align-items: center;
    text-align: center;
    width: 180px;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.7);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pimpinan-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.pimpinan-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Photo wrapper with ring effect */
.pimpinan-photo-wrapper {
    position: relative;
    margin-bottom: 20px;
}

/* Animated gold border box */
.pimpinan-photo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 20px;
    border: 3px solid transparent;
    background: linear-gradient(#0a2a66, #0a2a66) padding-box,
                linear-gradient(135deg, #ffd700, #ffaa00, #ffd700, #ffaa00) border-box;
    animation: ringRotate 8s linear infinite;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    z-index: 1;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Inner glow box */
.pimpinan-photo-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 190px;
    border-radius: 25px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.8; }
}

.pimpinan-photo-img,
.pimpinan-photo-placeholder {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    position: relative;
    z-index: 2;
    border: 3px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5),
                0 0 30px rgba(255, 215, 0, 0.25),
                inset 0 0 10px rgba(255, 215, 0, 0.15);
}

.pimpinan-photo-placeholder {
    background: linear-gradient(135deg, #1c5ed6 0%, #0a2a66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-icon {
    font-size: 50px;
}

.pimpinan-info {
    width: 100%;
    position: relative;
    z-index: 40;
}

.pimpinan-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    word-wrap: break-word;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.pimpinan-role {
    font-size: 12px;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* ===================================
   Footer
   =================================== */
.videotron-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(0deg,
        rgba(10, 42, 102, 0.95) 0%,
        rgba(10, 42, 102, 0.7) 70%,
        transparent 100%);
    display: flex;
    align-items: center;
    z-index: 100;
}

.running-text-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.running-text-icon {
    font-size: 24px;
    margin-right: 15px;
    animation: iconBounce 1s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.running-text {
    flex: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

/* ===================================
   Fullscreen Button
   =================================== */
.fullscreen-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 200;
}

.videotron-container:hover .fullscreen-btn {
    opacity: 1;
}

.fullscreen-btn:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
}

/* ===================================
   Swiper Custom Styles
   =================================== */
.swiper-slide-active .pimpinan-card {
    animation: cardFadeIn 0.6s ease-out forwards;
}

/* Transitions */
.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pagination (hidden but can be enabled) */
.swiper-pagination {
    display: none;
}

/* ===================================
   Utility Classes
   =================================== */
.animate-title {
    animation: slideInDown 1s ease-out;
}

.animate-subtitle {
    animation: slideInUp 1s ease-out 0.3s both;
}

.animate-text {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   Responsive for preview purposes
   =================================== */
@media (max-width: 1500px) {
    .videotron-container {
        transform-origin: top left;
        transform: scale(calc(100vw / 1456));
    }
}
