* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(125deg, #0a2e65, #1565c0, #2196F3, #3f99f0, #81d4fa);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    opacity: 0.9;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.header {
    width: 1900px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(to right, #1976D2, #2196F3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
    position: relative;
    overflow: hidden;
    color: white;
    border-radius: 12px;
    animation: gradientBG 15s ease infinite;
}

.logo-container {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    top: 15px;
}

.logo {
    width: 184px;
    height: 37px;
}

.logosifast {
    width: 50px;
    height: 50px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
    color: white;
}

.clock {
    font-size: 18px;
    color: #E3F2FD;
    margin-bottom: 25px;
}

.content {
    width: 1920px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    gap: 20px;
    padding: 20px 10px;
}

.column-1 {
    width: 390px;
    height: 920px;
    background: linear-gradient(135deg, #FFFFFF, #E3F2FD);
    padding: 15px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 12px;
    overflow-y: auto;
}

.room-card {
    width: 100%;
    height: 124px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-2px);
}

.column-2 {
    width: 520px;
    height: 920px;
    background: linear-gradient(135deg, #FFFFFF, #E3F2FD);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
}

.slideshow-section {
    width: 100%;
    height: 300px;
    position: relative;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.slideshow-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.caption-text {
    color: white;
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.fade-in {
    opacity: 1;
}

.column-3 {
    width: 990px;
    height: 920px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.youtube-section {
    width: 100%;
    height: 540px;
    background: linear-gradient(135deg, #FFFFFF, #E3F2FD);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.agenda-section {
    width: 100%;
    background: linear-gradient(135deg, #FFFFFF, #E3F2FD);
    padding: 10px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.1);
    border-radius: 12px;
    height: 390px;
    overflow: hidden;
}

.agenda-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: #1976D2;
    font-weight: bold;
}

.agenda-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
}

.agenda-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 150px;
    transition: transform 0.3s ease;
}

.agenda-card:hover {
    transform: translateY(-3px);
}

.agenda-card h4 {
    color: #1976D2;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #2196F3;
}

.agenda-card p {
    color: #37474F;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.agenda-card .date-time {
    color: #1976D2;
    font-size: 11px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #E3F2FD;
}

/* Room card styles by room name */
.agenda-card.rinjani {
    background: linear-gradient(135deg, #FFF8E1, #FFE082);
}

.agenda-card.anak-dara {
    background: linear-gradient(135deg, #E8F5E9, #A5D6A7);
}

.agenda-card.bao-ritip {
    background: linear-gradient(135deg, #E1F5FE, #81D4FA);
}

.agenda-card.sempana {
    background: linear-gradient(135deg, #FCE4EC, #F48FB1);
}

.agenda-card.pergasingan {
    background: linear-gradient(135deg, #F3E5F5, #CE93D8);
}

.agenda-card.lembah-gedong {
    background: linear-gradient(135deg, #FFF3E0, #FFCC80);
}

.agenda-card.kondo {
    background: linear-gradient(135deg, #E8EAF6, #9FA8DA);
}

.running-text {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 13px;
    color: #E3F2FD;
    height: 20px;
    overflow: hidden;
    background-color: transparent;
}

.running-text-container {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}