/* ============================================== MÉDIAS - DESIGN PREMIUM ===================================================== */

/* Subnavigation */
.media-subnav {
    background: var(--white);
    border-bottom: 2px solid var(--light-gray);
    position: sticky;
    top: 90px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.subnav-inner {
    display: flex;
    overflow-x: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.subnav-inner::-webkit-scrollbar {
    display: none;
}

.subnav-item {
    flex: 1;
    min-width: 120px;
    padding: 20px 15px;
    text-decoration: none;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.subnav-item:hover {
    color: var(--oif-blue);
    background: rgba(0, 85, 164, 0.03);
}

.subnav-item.active {
    color: var(--oif-blue);
    border-bottom-color: var(--oif-pink);
    font-weight: 600;
}

.subnav-item i {
    font-size: 1.3rem;
}

.subnav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Carousel Albums */
.albums-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    color: var(--oif-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.carousel-prev:hover:not(:disabled),
.carousel-next:hover:not(:disabled) {
    background: var(--oif-blue);
    border-color: var(--oif-blue);
    color: white;
    transform: scale(1.1);
}

.carousel-prev:disabled,
.carousel-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Live Section */
.live-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.live-player {
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.live-status {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.status-indicator {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--oif-pink);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-countdown {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.live-placeholder {
    text-align: center;
    color: white;
    padding: 40px;
}

.live-placeholder i {
    font-size: 4rem;
    color: var(--oif-pink);
    margin-bottom: 20px;
}

.live-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.live-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--oif-pink);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    min-width: 80px;
    text-align: center;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-schedule {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-gray);
}

.live-schedule h3 {
    color: var(--oif-blue);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.schedule-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--oif-blue);
    transition: var(--transition-fast);
}

.schedule-item:hover {
    transform: translateX(5px);
    background: rgba(0, 85, 164, 0.05);
}

.schedule-time {
    font-weight: 600;
    color: var(--oif-blue);
    min-width: 120px;
    font-size: 0.9rem;
}

.schedule-content {
    flex: 1;
}

.schedule-content h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.schedule-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0 0 8px 0;
}

.schedule-tag {
    display: inline-block;
    background: var(--oif-pink);
    color: white;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.live-stats .stat-item {
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--oif-pink);
    text-align: center;
}

.live-stats .stat-item i {
    font-size: 1.5rem;
    color: var(--oif-pink);
    margin-bottom: 10px;
}

.live-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oif-blue-dark);
    display: block;
}

.live-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

/* Live Chat */
.live-chat {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-gray);
    overflow: hidden;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: var(--light-bg);
}

.message {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.message:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.message-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.user-avatar {
    width: 30px;
    height: 30px;
    background: var(--oif-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.user-name {
    font-weight: 600;
    color: var(--oif-blue);
    font-size: 0.9rem;
}

.message-time {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-left: auto;
}

.message-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 40px;
}

.chat-input {
    display: flex;
    padding: 20px;
    border-top: 1px solid var(--light-gray);
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--oif-blue);
}

.chat-input .btn {
    padding: 12px 20px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--oif-blue);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--oif-blue);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.video-play:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--oif-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Playlist */
.playlist {
    margin-top: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--light-gray);
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--light-gray);
    background: var(--white);
    transition: var(--transition-fast);
    cursor: pointer;
}

.playlist-item:hover {
    background: rgba(0, 85, 164, 0.05);
}

.playlist-item:last-child {
    border-bottom: none;
}

.playlist-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--oif-blue);
    min-width: 40px;
}

.playlist-thumb {
    position: relative;
    width: 80px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-right: 15px;
}

.playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.playlist-info {
    flex: 1;
}

.playlist-info h4 {
    color: var(--oif-blue);
    font-size: 1rem;
    margin-bottom: 5px;
}

.playlist-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.playlist-duration {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: 15px;
    min-width: 50px;
    text-align: right;
}

/* Album Cards */
.album-card {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.album-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--oif-blue);
    box-shadow: var(--shadow-xl);
}

.album-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-view {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid white;
    border-radius: var(--radius-full);
    color: var(--oif-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.album-view:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.album-info {
    padding: 20px;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.album-date {
    color: var(--oif-pink);
    font-weight: 600;
}

.album-category {
    color: var(--text-light);
}

.album-info h3 {
    font-size: 1.2rem;
    color: var(--oif-blue);
    margin-bottom: 8px;
    line-height: 1.3;
}

.album-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Filter Bar */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 25px 30px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    border: 2px solid var(--light-gray);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--oif-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition-fast);
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--oif-blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.1);
}

.filter-bar .btn {
    align-self: end;
    justify-self: end;
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    min-height: 500px;
}

.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: var(--text-light);
}

.loading-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--oif-blue);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.pagination-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--oif-blue);
    color: var(--oif-blue);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    color: var(--text-secondary);
}

.page-number:hover:not(.active) {
    background: rgba(0, 85, 164, 0.1);
    color: var(--oif-blue);
}

.page-number.active {
    background: var(--oif-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 85, 164, 0.3);
}

.page-dots {
    color: var(--text-light);
}

/* Photo Stats */
.photo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--oif-blue);
}

.stat-item i {
    font-size: 2rem;
    color: var(--oif-blue);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--oif-blue-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Modal Album */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.modal-dialog {
    max-width: 1400px;
    margin: 0 auto;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--oif-blue), var(--oif-purple));
    color: white;
}

.modal-title {
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--oif-pink);
    transform: rotate(90deg);
}

.modal-body {
    max-height: 70vh;
    overflow: hidden;
}

.album-viewer {
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 600px;
}

.album-sidebar {
    background: var(--light-bg);
    border-right: 1px solid var(--light-gray);
    overflow-y: auto;
    padding: 30px;
}

.album-info {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.album-cover-small {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: var(--oif-blue);
    flex-shrink: 0;
}

.album-details h4 {
    color: var(--oif-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.album-details p {
    color: var(--text-light);
    margin: 3px 0;
    font-size: 0.9rem;
}

.album-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.thumbnail {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    position: relative;
    aspect-ratio: 1;
}

.thumbnail:hover {
    border-color: var(--oif-blue);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--oif-pink);
    box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-main {
    display: flex;
    flex-direction: column;
    position: relative;
}

.album-navigation {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    color: var(--oif-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.nav-btn:hover:not(:disabled) {
    background: var(--oif-blue);
    border-color: var(--oif-blue);
    color: white;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.album-viewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #000;
    min-height: 400px;
}

.album-viewport img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.album-caption {
    padding: 25px 30px;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.album-caption h5 {
    color: var(--oif-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.album-caption p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.album-actions {
    display: flex;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .album-viewer {
        grid-template-columns: 300px 1fr;
    }
    
    .filter-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-container {
        grid-template-columns: 1fr;
    }
    
    .live-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .albums-carousel {
        padding: 0 20px;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .album-card {
        flex: 0 0 250px;
    }
    
    .album-viewer {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .album-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        max-height: 300px;
    }
    
    .album-viewport {
        min-height: 300px;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 60px;
        padding: 8px 15px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .media-subnav {
        top: 70px;
    }
    
    .subnav-item {
        min-width: 100px;
        padding: 15px 10px;
    }
    
    .carousel-track {
        gap: 10px;
    }
    
    .album-card {
        flex: 0 0 220px;
    }
    
    .filter-bar {
        grid-template-columns: 1fr;
    }
    
    .filter-bar .btn {
        justify-self: stretch;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .album-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .live-placeholder {
        padding: 20px;
    }
    
    .live-placeholder i {
        font-size: 3rem;
    }
    
    .live-placeholder h3 {
        font-size: 1.4rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
        min-width: 50px;
        padding: 6px 12px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .albums-carousel {
        padding: 0;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .album-card {
        flex: 0 0 85vw;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .photo-stats {
        grid-template-columns: 1fr;
    }
    
    .album-info {
        flex-direction: column;
        text-align: center;
    }
    
    .album-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .live-schedule {
        padding: 20px;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .schedule-time {
        min-width: auto;
    }
    
    .playlist-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .playlist-number {
        display: none;
    }
    
    .playlist-thumb {
        width: 100%;
        height: 120px;
    }
}