/* --- HYPE CALENDAR STYLES (FINAL MERGED) --- */

:root {
    --bg-body: #09090b;
    --bg-card: #18181b;
    --border: #27272a;
    --primary: #F43F5E;
    --game-color: #10b981;
    --anime-color: #f59e0b;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
}

body {
    background-color: var(--bg-body);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

.hype-container {
    max-width: 100%;
    padding: 20px 40px;
    margin-top: var(--header-height);
}

/* --- HERO SECTION --- */
.hype-hero {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
    background-size: cover;
    background-position: center 20%;
    transform: translateZ(0); 
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        linear-gradient(to top, #09090b 15%, rgba(9,9,11,0.8) 50%, transparent 100%),
        radial-gradient(circle at center, transparent 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-info-col {
    max-width: 700px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px; /* Espaçamento uniforme */
}

.release-tag-floating {
    position: absolute;
    top: 15px; 
    right: 15px; 
    left: auto; /* Garantir que não estique */
    background: rgba(244, 63, 94, 0.9);
    color: white;
    font-size: 0.7rem; 
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 50; /* Z-Index alto para ficar acima de tudo no Hero */
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none; /* Não atrapalhar cliques se houver algo por baixo */
}

.hero-info-col h1 {
    font-size: 3.5rem; 
    margin: 0;
    line-height: 1.1; 
    color: white;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
    font-weight: 900; 
    letter-spacing: -1px;
    
    /* Limitador de Linhas (Max 2) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1.1em; /* Garante espaço mesmo se curto */
}

.hero-badges { 
    display: flex; 
    gap: 12px; 
    margin: 6px 0 10px 0;
    min-height: 36px;
    align-items: center;
    flex-wrap: wrap;
}

/* Pill Principal (Top-level único) */
.hero-badges > span {
    background: linear-gradient(135deg, rgba(18, 24, 38, 0.85), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
}

.hero-badges > span:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.hero-badges > span:empty {
    display: none !important;
}

/* Badge Estúdio / Produtora */
.hero-badges > .badge-studio {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.92));
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #e0f2fe;
}

.hero-badges > .badge-studio i {
    color: #38bdf8;
    font-size: 0.88rem;
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5));
}

.hero-badges > .badge-studio span {
    color: #f8fafc;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Badge Plataformas */
.hero-badges > .badge-source {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.92));
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: #f1f5f9;
    gap: 8px;
}

/* Itens internos de plataforma: limpos, sem bordas aninhadas */
.hero-badges > .badge-source .plat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.82rem;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.hero-badges > .badge-source .plat-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    user-select: none;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Ícones das Plataformas */
.hero-badges > .badge-source i.fa-windows {
    color: #38bdf8;
    filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.5));
}

.hero-badges > .badge-source i.fa-playstation {
    color: #60a5fa;
    filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.5));
}

.hero-badges > .badge-source i.fa-xbox {
    color: #4ade80;
    filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.5));
}

.hero-badges > .badge-source i.fa-gamepad {
    color: #f43f5e;
    filter: drop-shadow(0 0 5px rgba(244, 63, 94, 0.5));
}

.hero-badges > .badge-source i.fa-tv {
    color: #fb923c;
    filter: drop-shadow(0 0 5px rgba(251, 146, 60, 0.5));
}

.hero-badges > .badge-source i.fa-apple {
    color: #f1f5f9;
}

.hero-badges > .badge-source i.fa-google-play {
    color: #34d399;
}

/* Badge de Score Metacritic / Avaliação */
.hero-badges > .badge-score {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border: 1px solid rgba(16, 185, 129, 0.6) !important;
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
}

.hero-badges > .badge-score i {
    color: #fef08a;
    filter: drop-shadow(0 0 4px rgba(254, 240, 138, 0.8));
}

.hero-meta-grid {
    display: flex; gap: 40px; 
    margin: 5px 0;
    border-left: 3px solid var(--primary); padding-left: 20px;
    height: 40px; /* Altura fixa */
}
.hm-item { display: flex; flex-direction: column; justify-content: center; }
.hm-item label { font-size: 0.7rem; color: #a1a1aa; text-transform: uppercase; margin-bottom: 2px; }
.hm-item span { font-size: 1.1rem; font-weight: 700; color: white; white-space: nowrap; }

#hero-desc {
    color: #a1a1aa; font-size: 1rem; line-height: 1.5;
    max-width: 600px; 
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    
    /* Limitador de Linhas (Max 3) */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5em; /* Altura fixa para 3 linhas */
}

.hero-actions { 
    display: flex; 
    gap: 20px; 
    margin-top: 10px;
}
.cta-button, .cta-button-secondary {
    padding: 12px 30px; border-radius: 8px; font-size: 1rem; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; gap: 10px; transition: 0.2s;
}
.cta-button { background: var(--primary); color: white; border: none; }
.cta-button:hover { filter: brightness(1.1); transform: translateY(-2px); }
.cta-button-secondary { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.cta-button-secondary:hover { background: rgba(255,255,255,0.2); }

.hero-floating-poster {
    width: 280px; height: 400px;
    border-radius: 16px; overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.1);
    transform: rotate(3deg) translateY(-20px); 
    margin-right: 20px; flex-shrink: 0;
    transition: transform 0.5s ease;
    animation: floatPoster 6s ease-in-out infinite alternate;
}

@keyframes floatPoster {
    from { transform: rotate(3deg) translateY(-10px); }
    to { transform: rotate(5deg) translateY(-30px); }
}

.hero-floating-poster:hover {
    transform: rotate(0deg) translateY(-25px) scale(1.05);
}

.hero-floating-poster img { width: 100%; height: 100%; object-fit: cover; }

/* --- CONTROLS --- */
.hype-controls {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px; background: var(--bg-card);
    padding: 15px 30px; border-radius: 16px; border: 1px solid var(--border);
    position: sticky; top: 80px; z-index: 100;
    box-shadow: none;
}

.month-navigator { display: flex; align-items: center; gap: 20px; }
.month-navigator h2 { margin: 0; font-size: 1.2rem; min-width: 160px; text-align: center; color: white; }
.month-navigator button { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: white; cursor: pointer; width: 36px; height: 36px; border-radius: 50%; transition: 0.2s; }
.month-navigator button:hover { background: var(--primary); border-color: var(--primary); }

.category-filters { display: flex; gap: 8px; }
.filter-btn {
    background: transparent; border: 1px solid transparent;
    color: var(--text-muted); padding: 8px 20px; border-radius: 20px;
    cursor: pointer; font-weight: 600; transition: 0.2s;
}
.filter-btn:hover { background: rgba(255,255,255,0.05); color: white; }
.filter-btn.active { background: white; color: black; box-shadow: none; }

/* --- CALENDAR LAYOUT --- */
.calendar-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.date-group {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.date-header {
    font-size: 1rem; font-weight: 800; color: white;
    background: linear-gradient(90deg, var(--bg-card), transparent);
    padding: 10px 0; border-bottom: 2px solid var(--border);
    display: flex; align-items: center; gap: 10px;
}
.date-header span { color: var(--primary); font-size: 0.8rem; text-transform: uppercase; }

.releases-grid {
    display: flex; flex-direction: column; gap: 20px;
}

/* --- CARD DESIGN --- */
.hype-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border);
    box-shadow: none;
}

.hype-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: none;
    border-color: var(--text-muted);
    z-index: 5;
}

.card-poster { width: 100%; height: 100%; position: relative; }
.card-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hype-card:hover .card-poster img { transform: scale(1.1); }

.card-badges-top {
    position: absolute; top: 12px; left: 12px; right: 12px;
    display: flex; justify-content: space-between;
    z-index: 2;
}

.type-badge {
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
    padding: 4px 8px; border-radius: 6px; color: white;
    box-shadow: none;
}
.bg-game { background: var(--game-color); }
.bg-anime { background: var(--anime-color); }

.score-badge {
    font-size: 0.75rem; font-weight: 800; color: white;
    background: rgba(0,0,0,0.8); padding: 4px 8px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; gap: 4px;
}
.score-high { color: #10b981; border-color: #10b981; }
.score-mid { color: #f59e0b; border-color: #f59e0b; }

.card-content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #09090b 10%, rgba(9,9,11,0.95) 60%, transparent 100%);
    display: flex; flex-direction: column; gap: 5px;
    transform: translateY(10px); transition: 0.3s;
}

.hype-card:hover .card-content { transform: translateY(0); }

.card-studio {
    font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
    opacity: 0; transition: 0.3s; transform: translateY(10px);
}
.hype-card:hover .card-studio { opacity: 1; transform: translateY(0); }

.card-content h3 {
    margin: 0; font-size: 1.1rem; color: white; line-height: 1.2;
    text-shadow: 0 2px 4px black;
}

.card-tags { display: flex; gap: 6px; margin-top: 5px; flex-wrap: wrap; }
.card-tag {
    font-size: 0.65rem; color: #ccc; background: rgba(255,255,255,0.1);
    padding: 2px 6px; border-radius: 4px;
}

.card-footer-icons {
    display: flex; gap: 10px; margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px;
    opacity: 0; transition: 0.3s 0.1s;
}
.hype-card:hover .card-footer-icons { opacity: 1; }

.footer-icon { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* Expand Button */
.expand-day-btn {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px dashed var(--border);
    color: var(--text-muted);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.2s;
    margin-top: 10px;
}
.expand-day-btn:hover { background: rgba(255,255,255,0.1); color: white; border-color: #666; }

/* --- MODAL DETAILS PREMIUM GLASSMORPHIC SYSTEM --- */
#dynamic-details-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(3, 7, 18, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    animation: dmFadeIn 0.25s ease-out forwards;
}

@keyframes dmFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.details-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(11, 15, 25, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95), 0 0 35px rgba(56, 189, 248, 0.12) !important;
    width: 95% !important;
    max-width: 980px !important;
    max-height: 88vh !important;
    display: flex !important;
    flex-direction: row !important;
    overflow: hidden !important;
    position: relative !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.dm-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    font-size: 1.6rem !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    transition: all 0.2s ease;
}

.dm-close-btn:hover {
    background: rgba(239, 68, 68, 0.95) !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
    transform: rotate(90deg) scale(1.08);
}

.details-media-col {
    width: 38%;
    min-width: 300px;
    background: #030712;
    position: relative;
    display: flex;
    overflow: hidden;
}

.details-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
    transition: transform 0.6s ease;
}

.details-card:hover .details-media-img {
    transform: scale(1.03);
}

.details-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(17, 24, 39, 0.95) 100%),
                linear-gradient(to top, rgba(3, 7, 18, 0.8) 0%, transparent 40%);
    pointer-events: none;
}

.details-info-col {
    width: 62%;
    padding: 36px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.details-info-col::-webkit-scrollbar {
    width: 6px;
}
.details-info-col::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.dm-top-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dm-category-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    color: white;
}

.dm-category-tag.game { background: #3b82f6; }
.dm-category-tag.anime { background: #f97316; }

.dm-date-tag {
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dm-studio-line {
    font-size: 0.85rem;
    color: #38bdf8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dm-title {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.dm-badges-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.dm-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dm-pill-rating {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.dm-pill-score {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.dm-section-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dm-section-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dm-stores-list, .dm-platforms-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.store-badge-link {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f1f5f9;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.store-badge-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #38bdf8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.store-badge-link.store-steam:hover { border-color: #66c0f4; box-shadow: 0 4px 12px rgba(102, 192, 244, 0.4); }
.store-badge-link.store-epic:hover { border-color: #f8fafc; box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3); }
.store-badge-link.store-ps:hover { border-color: #0070d1; box-shadow: 0 4px 12px rgba(0, 112, 209, 0.4); }
.store-badge-link.store-xbox:hover { border-color: #107c10; box-shadow: 0 4px 12px rgba(16, 124, 16, 0.4); }
.store-badge-link.store-crunchy:hover { border-color: #f47521; box-shadow: 0 4px 12px rgba(244, 117, 33, 0.4); }

.dm-desc-text {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.65;
    max-height: 140px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.dm-actions-row {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding-top: 8px;
    flex-wrap: wrap;
}

.dm-action-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.dm-action-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #04100c;
}
.dm-action-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.dm-action-anime {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
}
.dm-action-anime:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.dm-action-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f1f5f9;
}
.dm-action-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #f59e0b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

/* --- RESPONSIVIDADE (MOBILE OPTIMIZATION) --- */

@media (max-width: 1024px) {
    .hype-container { padding: 20px; }
    .hero-info-col h1 { font-size: 2.8rem; }
    .calendar-layout { justify-content: center; }
}

@media (max-width: 768px) {
    .hype-container { padding: 15px; margin-top: 60px; }
    
    /* Hero Adjustments */
    .hype-hero { height: auto; min-height: 400px; align-items: center; padding: 40px 20px; text-align: center; }
    .hero-content { flex-direction: column; padding: 20px; gap: 30px; }
    .hero-info-col { max-width: 100%; align-items: center; }
    .hero-info-col h1 { font-size: 2.2rem; text-align: center; }
    .hero-meta-grid { border-left: none; border-top: 2px solid var(--primary); padding-left: 0; padding-top: 15px; height: auto; gap: 20px; }
    .hero-badges { justify-content: center; flex-wrap: wrap; }
    #hero-desc { font-size: 0.9rem; -webkit-line-clamp: 4; height: auto; }
    .hero-actions { width: 100%; justify-content: center; }
    .cta-button { width: 100%; justify-content: center; }
    
    .hero-floating-poster { 
        width: 200px; height: 300px; 
        margin-right: 0; 
        transform: rotate(0) translateY(0); 
        animation: none;
        box-shadow: none;
    }

    /* Controls Adjustments */
    .hype-controls { 
        flex-direction: column; 
        gap: 15px; 
        padding: 15px; 
        top: 70px;
        position: relative; /* Remove sticky on mobile for better scrolling */
    }
    .month-navigator { width: 100%; justify-content: space-between; }
    .category-filters { width: 100%; overflow-x: auto; padding-bottom: 5px; }
    .filter-btn { flex: 1; white-space: nowrap; font-size: 0.75rem; padding: 8px 12px; }

    /* Calendar Grid Adjustments */
    .calendar-layout { flex-direction: column; gap: 40px; }
    .date-group { width: 100%; flex: none; }
    .releases-grid { width: 100%; }
    .hype-card { aspect-ratio: 16/9; } /* Cards horizontais no mobile para economizar espaço vertical */
    
    .card-content { transform: translateY(0); background: linear-gradient(to top, #000 30%, transparent 100%); }
    .card-studio { opacity: 1; transform: translateY(0); }
    .card-footer-icons { opacity: 1; }

    /* Modal Mobile Adjustments */
    #dynamic-details-modal {
        padding: 12px !important;
        align-items: center !important;
    }
    .details-card {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 480px !important;
        max-height: 88vh !important;
        overflow-y: auto !important;
        border-radius: 18px !important;
        display: flex !important;
    }
    .details-media-col {
        width: 100% !important;
        min-width: unset !important;
        height: 180px !important;
        min-height: 180px !important;
        flex-shrink: 0 !important;
    }
    .details-media-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 25% !important;
    }
    .details-media-overlay {
        background: linear-gradient(to top, rgba(17, 24, 39, 0.95) 0%, transparent 60%) !important;
    }
    .details-info-col {
        width: 100% !important;
        padding: 20px 18px !important;
        overflow-y: visible !important;
        gap: 14px !important;
    }
    .dm-title {
        font-size: 1.5rem !important;
    }
    .dm-desc-text {
        max-height: 120px !important;
        font-size: 0.88rem !important;
    }
    .dm-actions-row {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }
    .dm-action-btn {
        width: 100% !important;
        padding: 11px 16px !important;
        font-size: 0.88rem !important;
    }
    .dm-close-btn {
        top: 12px !important;
        right: 12px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1.1rem !important;
        background: rgba(0, 0, 0, 0.8) !important;
    }
}

@media (max-width: 480px) {
    .hero-info-col h1 { font-size: 1.8rem; }
    .hero-floating-poster { width: 160px; height: 240px; }
    .date-header { font-size: 0.9rem; }
    .hype-card { aspect-ratio: 1/1; } /* Quadrado em telas muito pequenas */
    
    #dynamic-details-modal {
        padding: 8px !important;
    }
    .details-card {
        max-height: 92vh !important;
        border-radius: 14px !important;
    }
    .details-media-col {
        height: 150px !important;
        min-height: 150px !important;
    }
    .details-info-col {
        padding: 16px 14px !important;
        gap: 12px !important;
    }
    .dm-title {
        font-size: 1.35rem !important;
    }
    .dm-badges-row {
        gap: 6px !important;
    }
    .dm-pill {
        font-size: 0.72rem !important;
        padding: 4px 8px !important;
    }
    .store-badge-link {
        font-size: 0.75rem !important;
        padding: 5px 10px !important;
    }
    .dm-section-card {
        padding: 10px 12px !important;
    }
}