:root {
    --bg-color: #050505;
    --sidebar-color: #000000;
    --gold: #e2c073;
    --gold-bright: #ffeba8;
    --gold-dark: #8c6a26;
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --text-color: #ffffff;
    --text-dim: #a0a0a0;
    --card-width: 180px;
    --card-height: 270px; /* 9:16 aspect ratio */
    --transition-speed: 0.4s;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(226, 192, 115, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden; /* Hide scrollbars for TV feel */
    height: 100vh;
    display: flex;
}

/* Side Menu */
.side-menu {
    width: 100px;
    height: 100vh;
    background-color: var(--sidebar-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: width var(--transition-speed) ease;
    z-index: 100;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.side-menu.expanded {
    width: 240px;
}

.logo-container {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 80px;
    transition: width var(--transition-speed);
}

.side-menu.expanded .logo {
    width: 160px;
}

.menu-items {
    list-style: none;
    width: 100%;
    margin-top: 40px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    cursor: pointer;
    transition: all var(--transition-speed);
    color: var(--text-dim);
    position: relative;
}

.menu-item i {
    font-size: 20px;
    min-width: 24px;
    text-align: center;
}

.menu-item span {
    margin-left: 15px;
    opacity: 0;
    white-space: nowrap;
    transition: opacity var(--transition-speed);
    font-size: 0.9rem;
}

.side-menu.expanded .menu-item span {
    opacity: 1;
}

.menu-item.active {
    color: var(--gold);
}

.menu-item.focused {
    background-color: rgba(226, 192, 115, 0.1);
    color: var(--gold-bright);
    transform: scale(1.05);
    border-radius: 8px;
    margin: 0 10px;
    padding: 15px 25px;
}

.menu-item.focused::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20%;
    height: 60%;
    width: 4px;
    background: var(--gold-gradient);
    box-shadow: 0 0 15px var(--gold);
    border-radius: 0 4px 4px 0;
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    height: 100vh;
    scroll-behavior: smooth;
    padding-bottom: 50px;
}

.main-content::-webkit-scrollbar {
    display: none;
}

/* Hero Carousel & Overlay Layout */
.hero-container {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
    transition: background-color 0.5s;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: cover;
    background-position: center top;
    z-index: 0;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to right, rgba(5,5,5,1) 0%, rgba(5,5,5,0.8) 35%, transparent 80%),
                linear-gradient(to top, rgba(5,5,5,1) 0%, transparent 60%),
                linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 20%);*/
    z-index: 1;
}

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    padding-left: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.focused-metadata {
    max-width: 550px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 30px;
}

.hero-slide.active .focused-metadata {
    animation: slideInText 0.6s ease-out forwards;
}

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.metadata-content {
    display: flex;
    flex-direction: column;
}

.metadata-content h2 {
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8));
    letter-spacing: 1.5px;
    font-weight: 900;
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
    padding-bottom: 8px;
    padding-right: 15px;
}

.meta-info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.meta-info-row .category {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-bright);
    font-size: 0.85rem;
}

.meta-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 15px;
}

.badge {
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}

.badge.premium-badge {
    border-color: var(--gold);
    color: var(--gold-bright);
    box-shadow: 0 0 10px rgba(226, 192, 115, 0.2);
}

.badge.rating {
    background: rgba(226, 192, 115, 0.15);
    border-color: var(--gold);
}

.meta-desc {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    /* High legibility outline and shadow */
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
         0 4px 8px rgba(0,0,0,1);
    max-width: 550px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-navigation {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(226, 192, 115, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: opacity 0.4s ease;
}

.hero-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.indicator.focused {
    transform: scale(1.5);
    background: var(--gold-bright);
    box-shadow: 0 0 20px var(--gold);
    border-color: #fff;
    width: 30px; /* Stretches when focused for better visual feedback */
    border-radius: 10px;
}

.indicator.active:not(.focused) {
    background: #fff;
    transform: scale(1.1);
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, var(--bg-color) 0%, rgba(5,5,5,0.9) 5%, transparent 10%);
    z-index: 2;
    pointer-events: none;
}

button {
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 800;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.btn-play {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(226, 192, 115, 0.3);
}

.btn-info {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

button.focused, button:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px var(--gold);
    outline: none;
    border: 2px solid #ffffff !important;
    z-index: 50;
    filter: brightness(1.2);
}



/* Content Rows */
.rows-container {
    margin-top: 40px; /* Increased to prevent overlap with hero buttons */
    position: relative;
    z-index: 20;
    padding-left: 5%;
    padding-bottom: 100px;
}

.row {
    margin-bottom: 60px;
    position: relative;
}

.row-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
}

.row-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.carousel {
    overflow: hidden; /* Prevent native horizontal scrollbars */
    width: 100%;
}

.carousel-inner {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    /* Ensure no wrapping so items stay in a single line */
    flex-wrap: nowrap; 
}

/* Card Styles & 9:16 to 16:9 Transition */
.content-card {
    position: relative;
    width: var(--card-width);
    height: var(--card-height);
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background-color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 2px solid transparent;
}

.card-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s, transform 0.4s;
}

.card-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.8);
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 12px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.5) 60%, transparent);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: opacity 0.3s;
}

.card-title {
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    letter-spacing: 0.3px;
}

.card-meta-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: var(--gold-bright);
    font-weight: 600;
    opacity: 0.9;
}

.card-dot {
    font-size: 1.2rem;
    line-height: 0;
    margin-top: -2px;
}

.card-trailer-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    background: #000;
}

/* Watch Button that appears on focus */
.card-watch-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gold);
    color: black;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s 0.5s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    font-size: 0.85rem;
    z-index: 25;
}

.content-card.focused {
    width: 360px; 
    height: 202px; 
    z-index: 10;
    transform: scale(1.12);
    box-shadow: 0 0 30px var(--gold);
    margin: 0 30px;
    border-color: var(--gold);
}

.content-card.focused .card-poster,
.content-card.focused .card-video-icon {
    opacity: 0;
}

.content-card.focused .card-title-overlay {
    opacity: 1;
    z-index: 20;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 40px 20px 20px 20px;
}

.content-card.focused .card-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.content-card.focused .card-meta-line {
    font-size: 0.75rem;
    opacity: 1;
}

.content-card.focused .card-trailer-container {
    opacity: 1;
    pointer-events: none; /* Keep none so click event reaches the card itself */
}

.content-card.focused .card-watch-button {
    opacity: 1;
    transform: translateY(0);
}

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

.trailer-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 5;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

/* Modals & Overlays */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.cinzel-font {
    font-family: 'Cinzel', serif;
}

.info-modal, .episode-modal {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    max-height: 85vh;
    position: relative;
    padding: 40px;
    box-shadow: 0 0 100px rgba(0,0,0,1), 0 0 40px rgba(212, 175, 55, 0.1);
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    overflow: hidden; /* Let inner content handle scrolling */
}

.info-modal {
    overflow-y: auto; /* Info modal stays with main scroll */
}

.info-modal::-webkit-scrollbar, .episode-modal .episode-list::-webkit-scrollbar {
    width: 8px;
}

.info-modal::-webkit-scrollbar-thumb, .episode-modal .episode-list::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.episode-modal-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0; /* Prevent header from squashing */
}

.episode-modal-header h2 {
    font-size: 2.5rem;
    color: white;
    letter-spacing: 2px;
}

.season-selector {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.season-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    padding: 12px 30px;
    border-radius: 8px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.season-btn.focused {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.season-btn.active {
    background: var(--gold-gradient);
    color: black;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.episode-list {
    flex: 1;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 15px 20px 0;
    align-content: start;
}

.episode-list::-webkit-scrollbar {
    width: 6px;
}

.episode-list::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.episode-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    min-height: 250px; /* Ensure a minimum size */
    flex-shrink: 0;
}

.episode-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.episode-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.episode-thumb .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.episode-info {
    padding: 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
}

.episode-info h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.episode-info p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-item.focused {
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.03);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.episode-item.focused .episode-thumb img {
    opacity: 1;
}

.episode-item.focused .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close-modal.focused {
    background: var(--gold);
    color: black;
    transform: scale(1.1) rotate(90deg);
}

.info-modal-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
}

.info-modal-poster img {
    width: 100%;
    max-height: 65vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-modal-details h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin: 30px 0;
}

.info-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hidden {
    display: none !important;
}

.login-container {
    background: #111;
    padding: 60px 40px 40px 40px;
    border: 1px solid var(--gold);
    border-radius: 12px;
    width: 450px;
    text-align: center;
    position: relative;
}

.login-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
}

.tab-btn {
    flex: 1;
    background: transparent;
    color: var(--text-dim);
    border-radius: 0;
    padding: 15px;
}

.tab-btn.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qr-instructions {
    text-align: left;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.qr-instructions strong {
    color: var(--gold);
}

.qr-pairing-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
}

.pairing-code-display {
    flex: 1;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed var(--gold);
}

.pairing-code-display .label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--text-dim);
}

.pairing-code-display h2 {
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 5px;
}

.qr-code-status {
    font-weight: 600;
    transition: color 0.3s;
}

.menu-item.logged-in {
    color: var(--gold-bright);
}

.menu-item.logged-in i {
    text-shadow: 0 0 10px var(--gold);
}

input {
    background: #222;
    border: 1px solid #444;
    padding: 12px;
    color: white;
    border-radius: 4px;
}

input.focused {
    border-color: var(--gold);
    outline: none;
    transform: scale(1.02);
}

.btn-gold {
    background: var(--gold);
    color: black;
    justify-content: center;
}

.qr-box {
    background: white;
    width: 200px;
    height: 200px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.qr-placeholder {
    font-size: 100px;
    color: #000;
}

/* Footer Styles */
.main-footer {
    padding: 60px 5% 100px 5%;
    text-align: center;
    color: var(--text-dim);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin-bottom: 40px;
    opacity: 0.3;
}

.footer-logo {
    width: 100px;
    opacity: 0.5;
}

.footer-end-badge {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 20px;
    opacity: 0.6;
}

/* TV Specific Adjustments */
@media screen and (min-width: 1920px) {
    :root {
        --card-width: 200px;
        --card-height: 300px;
    }
    
    .metadata-content h2 {
        font-size: clamp(2rem, 3vw, 2.8rem);
    }
    
    .row-title {
        font-size: 1.5rem;
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero-overlay-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .focused-metadata {
        margin-top: 0;
    }

    .metadata-content h2 {
        font-size: 2rem;
    }
}