/* =========================
   GENERAL
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 40px 25px 80px;
    background:
        radial-gradient(
            circle at top,
            #351313 0%,
            #120b0b 35%,
            #050505 75%
        );
    color: #ffffff;
    font-family: "Roboto Condensed", sans-serif;
    min-height: 100vh;
}


/* =========================
   HELLISH RED GLOW
========================= */

body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: 50%;
    width: 900px;
    height: 600px;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(120, 0, 0, 0.18) 0%,
            rgba(80, 0, 0, 0.08) 35%,
            transparent 70%
        );
    pointer-events: none;
    z-index: 0;
    animation: hellGlow 7s ease-in-out infinite;
}

@keyframes hellGlow {
    0% {
        opacity: 0.55;
        transform: translateX(-50%) scale(0.95);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        opacity: 0.55;
        transform: translateX(-50%) scale(0.95);
    }
}


/* =========================
   CALENDAR HEADER
========================= */

.calendar-header {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 35px;
    padding: 25px 20px 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            ellipse at center,
            rgba(100, 0, 0, 0.12),
            transparent 65%
        );

    border-bottom: 1px solid rgba(120, 0, 0, 0.35);
}

.calendar-header > div:nth-child(3) {
    justify-self: center;
}


/* =========================
   HEADER DECORATIONS
========================= */

.header-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    color: #650000;
    font-size: 42px;
    opacity: 0.85;

    text-shadow:
        0 0 10px rgba(150, 0, 0, 0.5),
        0 0 25px rgba(100, 0, 0, 0.3);

    transition:
        transform 0.4s ease,
        color 0.4s ease;
}

.header-decoration::before,
.header-decoration::after {
    content: "";
    position: absolute;

    width: 70px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #650000,
            transparent
        );

    opacity: 0.7;
}

.header-decoration::before {
    top: 4px;
}

.header-decoration::after {
    bottom: 4px;
}

.calendar-header:hover .header-decoration {
    color: #900000;
    transform: translateY(-50%) scale(1.08);
}

.calendar-header > .header-decoration:first-child {
    left: 8%;
}

.calendar-header > .header-decoration:last-child {
    right: 8%;
}


/* =========================
   MONTH
========================= */

.calendar-header .month {
    margin: 0 0 6px;

    color: #9b0000;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 10px;

    text-transform: uppercase;

    text-shadow:
        0 0 10px rgba(150, 0, 0, 0.35);
}


/* =========================
   MAIN TITLE
========================= */

.calendar-header h1 {
    position: relative;

    margin: 0;

    color: #f2f2f2;

    font-family: "Metal Mania", cursive;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 3px;

    text-transform: uppercase;

    text-shadow:
        0 2px 0 #050505,
        0 4px 12px rgba(0, 0, 0, 0.9),
        0 0 18px rgba(130, 0, 0, 0.35),
        0 0 45px rgba(90, 0, 0, 0.2);
}

.calendar-header h1::after {
    content: "";

    display: block;

    width: 150px;
    height: 2px;

    margin: 14px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #850000,
            #b00000,
            #850000,
            transparent
        );

    box-shadow:
        0 0 8px rgba(150, 0, 0, 0.45);
}


/* =========================
   YEAR / INFORMATION
========================= */

.calendar-header .year {
    margin: 12px 0 0;

    color: #777777;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 5px;

    text-transform: uppercase;
}


/* =========================
   COUNTDOWN
========================= */

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;
    margin-top: 14px;

    color: #d6d6d6;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;

    text-shadow:
        0 0 10px rgba(120, 0, 0, 0.35);
}

.countdown span {
    min-width: 28px;

    color: #ffffff;

    text-align: center;
}

.countdown small {
    align-self: flex-end;

    margin-right: 5px;
    margin-bottom: 2px;

    color: #777777;
    font-size: 7px;
    font-weight: bold;
    letter-spacing: 1px;
}

.countdown-separator {
    min-width: auto !important;

    margin: 0 2px;

    color: #7d0000 !important;
    font-size: 17px;

    text-shadow:
        0 0 8px rgba(130, 0, 0, 0.5);
}

.countdown-finished {
    color: #9d0000;
    font-size: 12px;
    letter-spacing: 2px;

    text-shadow:
        0 0 10px rgba(150, 0, 0, 0.4);
}


/* =========================
   CALENDAR PAPER
========================= */

.calendar-paper {
    position: relative;

    max-width: 1400px;
    margin: 0 auto;
    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #111111
        );

    border: 1px solid #3a3a3a;
    border-radius: 8px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(80, 0, 0, 0.15);
}


/* Top red calendar line */

.calendar-paper::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #700000;
}


/* =========================
   DAYS OF THE WEEK
========================= */

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    margin-bottom: 10px;

    border-bottom: 1px solid #3a3a3a;
}

.calendar-weekdays div {
    padding: 12px 5px;

    color: #999999;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}


/* Weekend headers */

.calendar-weekdays div:nth-child(6),
.calendar-weekdays div:nth-child(7) {
    color: #a23b3b;
}


/* =========================
   CALENDAR GRID
========================= */

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}


/* =========================
   DAY CELL
========================= */

.day {
    position: relative;

    min-height: 290px;
    overflow: hidden;

    border: 1px solid #2d2d2d;
    border-radius: 6px;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #0d0d0d
        );

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.45);

    cursor: pointer;

    opacity: 0;

    animation: appear 0.5s ease forwards;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.day::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #650000,
            transparent
        );

    opacity: 0.35;

    transition:
        opacity 0.35s ease;
}

.day:hover {
    transform: translateY(-6px);

    border-color: #720000;

    background:
        linear-gradient(
            145deg,
            #241010,
            #100909
        );

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.65),
        0 0 18px rgba(110, 0, 0, 0.18);
}

.day:hover::before {
    opacity: 1;
}


/* =========================
   DAY NUMBER
========================= */

.day h2 {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    margin: 0;

    color: #d0d0d0;

    background:
        linear-gradient(
            145deg,
            #260909,
            #100505
        );

    border: 1px solid #650000;
    border-radius: 4px;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.65),
        0 0 8px rgba(100, 0, 0, 0.15);

    text-shadow:
        0 0 6px rgba(150, 0, 0, 0.35);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.day:hover h2 {
    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #4a0000,
            #190505
        );

    border-color: #9b0000;

    transform: scale(1.08);

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(130, 0, 0, 0.3);
}


/* =========================
   POSTER
========================= */

.day img {
    display: block;

    width: 100%;
    height: 230px;

    object-fit: contain;

    background: #080808;

    border-bottom: 1px solid #2d2d2d;

    filter:
        brightness(0.82)
        contrast(1.08);

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.day:hover img {
    transform: scale(1.04);

    filter:
        brightness(0.95)
        contrast(1.1);
}


/* =========================
   ANIMATION
========================= */

@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-day {
    min-height: 290px;
}


/* =========================
   CALENDAR RINGS
========================= */

.calendar-rings {
    position: absolute;
    top: -18px;
    left: 5%;

    width: 90%;

    display: flex;
    justify-content: space-between;

    pointer-events: none;
}

.calendar-rings span {
    width: 28px;
    height: 38px;

    border: 4px solid #555555;
    border-radius: 8px;

    background: #9d1a1a;

    box-shadow:
        inset 0 0 5px #000000,
        0 3px 5px rgba(0, 0, 0, 0.7);
}


/* =========================
   BLOOD DETAILS
========================= */

.blood-stains {
    position: absolute;
    inset: 0;

    pointer-events: none;
    z-index: 2;
}

.blood-stain {
    position: absolute;

    display: block;

    background:
        radial-gradient(
            ellipse at center,
            #650000 0%,
            #3d0000 42%,
            transparent 72%
        );

    filter: blur(2px);
    opacity: 0.32;

    pointer-events: none;
}


/* Top right */

.stain-1 {
    top: 70px;
    right: 25px;

    width: 45px;
    height: 70px;

    transform: rotate(12deg);
}


/* Bottom left */

.stain-2 {
    bottom: 35px;
    left: 30px;

    width: 55px;
    height: 35px;

    opacity: 0.26;

    transform: rotate(-18deg);
}


/* Top left */

.stain-3 {
    top: 110px;
    left: 35px;

    width: 32px;
    height: 48px;

    opacity: 0.22;

    transform: rotate(-25deg);
}


/* Right side */

.stain-4 {
    top: 48%;
    right: 18px;

    width: 28px;
    height: 45px;

    opacity: 0.24;

    transform: rotate(25deg);
}


/* Bottom right */

.stain-5 {
    bottom: 85px;
    right: 55px;

    width: 38px;
    height: 25px;

    opacity: 0.22;

    transform: rotate(-12deg);
}


/* Small stain */

.stain-6 {
    bottom: 180px;
    left: 18px;

    width: 20px;
    height: 28px;

    opacity: 0.20;

    transform: rotate(30deg);
}


/* =========================
   FOG
========================= */

.fog {
    position: fixed;
    top: -20%;
    left: -20%;

    width: 140%;
    height: 140%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(100, 0, 0, 0.08),
            transparent 60%
        );

    filter: blur(60px);

    animation: fogMove 15s ease-in-out infinite alternate;

    pointer-events: none;
    z-index: -1;
}

@keyframes fogMove {
    from {
        transform: translate(-3%, -2%) scale(1);
    }

    to {
        transform: translate(3%, 2%) scale(1.05);
    }
}


/* =========================
   MOVIE TITLE
========================= */

.movie-title {
    position: relative;

    margin: 14px 12px 6px;

    color: #d0d0d0;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.8px;

    text-align: center;
    text-transform: uppercase;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8);

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        text-shadow 0.3s ease;
}

.movie-title::after {
    content: "";

    display: block;

    width: 35px;
    height: 1px;

    margin: 8px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #650000,
            transparent
        );

    opacity: 0.7;
}

.day:hover .movie-title {
    color: #ffffff;

    transform: translateY(-2px);

    text-shadow:
        0 0 8px rgba(150, 0, 0, 0.35);
}


/* =========================
   MOVIE MODAL
========================= */

.movie-modal {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.82);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 1000;
}

.movie-modal.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   MODAL CONTENT
========================= */

.modal-content {
    position: relative;

    width: 850px;
    max-width: 90%;

    display: flex;

    gap: 35px;
    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #202020,
            #101010
        );

    border: 1px solid #4a0000;
    border-radius: 8px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(100, 0, 0, 0.25);

    transform: scale(0.9) translateY(20px);

    transition:
        transform 0.3s ease;
}

.movie-modal.active .modal-content {
    transform: scale(1) translateY(0);
}


/* =========================
   MODAL POSTER
========================= */

#modalPoster {
    position: relative;
    z-index: 1;

    width: 280px;
    height: 410px;

    object-fit: cover;

    border-radius: 6px;
    border: 1px solid #3a0000;

    box-shadow:
        0 0 20px rgba(120, 0, 0, 0.18),
        0 15px 35px rgba(0, 0, 0, 0.65);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

#modalPoster:hover {
    transform: scale(1.015);

    box-shadow:
        0 0 25px rgba(140, 0, 0, 0.28),
        0 18px 40px rgba(0, 0, 0, 0.75);
}


/* =========================
   MODAL INFORMATION
========================= */

.modal-info {
    position: relative;
    z-index: 1;

    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

#modalDay {
    margin: 0 0 10px;

    color: #8f0000;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
}

#modalTitle {
    font-size: 38px;
    line-height: 1.05;

    margin: 8px 0 16px;

    color: #ffffff;

    text-transform: uppercase;
    letter-spacing: 1px;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.8);
}

#modalYear,
#modalDuration,
#modalGenre {
    margin: 0;

    color: #999999;

    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
}

#modalDescription {
    max-width: 520px;

    margin: 22px 0 28px;

    color: #bdbdbd;

    font-size: 15px;
    line-height: 1.75;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5);
}


/* =========================
   MODAL DETAILS
========================= */

.modal-line {
    width: 75px;
    height: 2px;

    margin-bottom: 20px;

    background:
        linear-gradient(
            90deg,
            #8b0000,
            #4a0000,
            transparent
        );

    box-shadow:
        0 0 8px rgba(139, 0, 0, 0.35);
}

.modal-details {
    display: flex;
    align-items: center;

    gap: 20px;
    margin-bottom: 5px;
}

.modal-details span {
    display: inline-flex;
    align-items: center;

    color: #888888;

    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
}


/* =========================
   WATCH BUTTON
========================= */

#modalWatch {
    display: inline-block;

    width: fit-content;

    padding: 13px 24px;

    background: #720000;
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;

    text-transform: uppercase;

    border-radius: 4px;

    box-shadow:
        0 0 15px rgba(120, 0, 0, 0.2);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

#modalWatch:hover {
    background: #a00000;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(150, 0, 0, 0.4);
}


/* =========================
   CLOSE BUTTON
========================= */

.modal-close {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: none;
    background: transparent;

    color: #999999;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.modal-close:hover {
    color: #d00000;
    transform: rotate(90deg);
}


/* =========================
   POSTER CINEMATIC EFFECT
========================= */

.modal-content::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 130px;

    width: 250px;
    height: 350px;

    background: #700000;

    opacity: 0.12;

    filter: blur(70px);

    transform: translate(-50%, -50%);

    pointer-events: none;
}


/* =========================
   TODAY
========================= */

.day.today {
    border-color: #a00000;

    background:
        linear-gradient(
            145deg,
            #2a1515,
            #171010
        );

    box-shadow:
        0 0 20px rgba(150, 0, 0, 0.35),
        inset 0 0 20px rgba(120, 0, 0, 0.08);

    transform: translateY(-3px);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* TODAY label */

.day.today::after {
    content: "TONIGHT";

    position: absolute;

    top: 10px;
    right: 10px;

    width: max-content;
    height: auto;

    padding: 5px 9px;

    background:
        linear-gradient(
            135deg,
            #a00000,
            #5c0000
        );

    color: #ffffff;

    font-size: 9px;
    font-weight: bold;
    letter-spacing: 1.5px;

    border: 1px solid #c00000;
    border-radius: 3px;

    z-index: 10;

    box-shadow:
        0 0 8px rgba(160, 0, 0, 0.45),
        0 3px 8px rgba(0, 0, 0, 0.5);
}


/* Slight glow on today's poster */

.day.today img {
    box-shadow:
        0 0 18px rgba(150, 0, 0, 0.4);
}


/* =========================
   LOCKED MOVIES
========================= */

.day.locked {
    cursor: not-allowed;

    border-color: #292929;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Dark overlay */

.day.locked::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.48)
        );

    pointer-events: none;
    z-index: 3;
}


/* Locked poster */

.day.locked img {
    filter:
        brightness(0.22)
        grayscale(0.45);

    opacity: 0.75;

    transform: scale(1);

    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* Locked hover */

.day.locked:hover {
    transform: translateY(-3px);

    border-color: #4a0000;

    box-shadow:
        0 8px 22px rgba(80, 0, 0, 0.2);
}

.day.locked:hover img {
    transform: scale(1.02);

    filter:
        brightness(0.27)
        grayscale(0.35);
}


/* Locked movie title */

.day.locked .movie-title {
    color: #555555;
}

.day.locked:hover .movie-title {
    color: #777777;
    transform: none;
}


/* Locked link */

.locked-link {
    display: block;
    cursor: not-allowed;
}


/* =========================
   COMING SOON
========================= */

.locked-message {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 9px;

    color: #dddddd;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 2.5px;

    text-align: center;

    pointer-events: none;
    z-index: 5;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 1);
}


/* Lock icon */

.lock-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background:
        radial-gradient(
            circle,
            rgba(35, 35, 35, 0.95),
            rgba(12, 12, 12, 0.95)
        );

    border: 1px solid #555555;
    border-radius: 50%;

    font-size: 18px;

    filter: grayscale(1);

    box-shadow:
        0 0 15px rgba(0, 0, 0, 0.8);

    line-height: 1;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.lock-emoji {
    transform: translateX(1px);
}


/* Subtle red glow when hovering */

.day.locked:hover .lock-icon {
    border-color: #700000;

    box-shadow:
        0 0 15px rgba(120, 0, 0, 0.35);

    transform: scale(1.05);
}


/* =========================
   HELL ASHES
========================= */

.particles {
    position: fixed;
    inset: 0;

    pointer-events: none;
    overflow: hidden;

    z-index: 1;
}

.particles span {
    position: absolute;

    bottom: -20px;

    width: 4px;
    height: 4px;

    background: rgba(210, 190, 170, 0.55);

    border-radius: 50%;

    box-shadow:
        0 0 5px rgba(180, 80, 20, 0.35);

    animation: hellAshes linear infinite;
}


/* Different sizes */

.particles span:nth-child(1),
.particles span:nth-child(5),
.particles span:nth-child(9) {
    width: 3px;
    height: 3px;
}

.particles span:nth-child(2),
.particles span:nth-child(6),
.particles span:nth-child(10) {
    width: 5px;
    height: 5px;
}

.particles span:nth-child(3),
.particles span:nth-child(7),
.particles span:nth-child(11) {
    width: 2px;
    height: 2px;
}

.particles span:nth-child(4),
.particles span:nth-child(8),
.particles span:nth-child(12) {
    width: 6px;
    height: 6px;
}


/* Different positions and speeds */

.particles span:nth-child(1) {
    left: 7%;
    animation-duration: 13s;
    animation-delay: -4s;
}

.particles span:nth-child(2) {
    left: 15%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.particles span:nth-child(3) {
    left: 24%;
    animation-duration: 11s;
    animation-delay: -6s;
}

.particles span:nth-child(4) {
    left: 33%;
    animation-duration: 16s;
    animation-delay: -13s;
}

.particles span:nth-child(5) {
    left: 42%;
    animation-duration: 12s;
    animation-delay: -3s;
}

.particles span:nth-child(6) {
    left: 51%;
    animation-duration: 19s;
    animation-delay: -15s;
}

.particles span:nth-child(7) {
    left: 60%;
    animation-duration: 14s;
    animation-delay: -8s;
}

.particles span:nth-child(8) {
    left: 69%;
    animation-duration: 17s;
    animation-delay: -11s;
}

.particles span:nth-child(9) {
    left: 78%;
    animation-duration: 12s;
    animation-delay: -5s;
}

.particles span:nth-child(10) {
    left: 86%;
    animation-duration: 20s;
    animation-delay: -16s;
}

.particles span:nth-child(11) {
    left: 93%;
    animation-duration: 15s;
    animation-delay: -9s;
}

.particles span:nth-child(12) {
    left: 97%;
    animation-duration: 18s;
    animation-delay: -14s;
}


/* Ash movement */

@keyframes hellAshes {
    0% {
        transform:
            translateY(0)
            translateX(0)
            rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    30% {
        transform:
            translateY(-30vh)
            translateX(35px)
            rotate(90deg);
    }

    55% {
        transform:
            translateY(-55vh)
            translateX(-25px)
            rotate(180deg);
    }

    75% {
        transform:
            translateY(-75vh)
            translateX(40px)
            rotate(270deg);
        opacity: 0.65;
    }

    100% {
        transform:
            translateY(-115vh)
            translateX(-30px)
            rotate(360deg);
        opacity: 0;
    }
}


/* =========================
   SITE FOOTER
========================= */

.site-footer {
    position: relative;

    max-width: 1400px;
    margin: 70px auto 0;
    padding: 45px 30px 25px;

    background:
        radial-gradient(
            ellipse at top center,
            rgba(90, 0, 0, 0.12),
            transparent 65%
        );

    border-top: 1px solid rgba(120, 0, 0, 0.4);
}


/* =========================
   FOOTER COLUMNS
========================= */

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}


/* =========================
   FOOTER SECTION
========================= */

.footer-section {
    position: relative;

    min-height: 230px;
    padding: 25px 30px;

    text-align: center;

    border: 1px solid rgba(80, 0, 0, 0.45);

    background:
        linear-gradient(
            180deg,
            rgba(30, 10, 10, 0.65),
            rgba(10, 7, 7, 0.75)
        );

    transition:
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Red line on top */

.footer-section::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 15%;
    right: 15%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #800000,
            #b00000,
            #800000,
            transparent
        );

    box-shadow:
        0 0 8px rgba(150, 0, 0, 0.35);
}


/* Hover */

.footer-section:hover {
    transform: translateY(-4px);

    border-color: rgba(130, 0, 0, 0.65);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(100, 0, 0, 0.12);
}


/* =========================
   FOOTER ICON
========================= */

.footer-icon {
    margin-bottom: 12px;

    color: #720000;

    font-size: 25px;

    text-shadow:
        0 0 10px rgba(130, 0, 0, 0.45);
}


/* =========================
   FOOTER TITLE
========================= */

.footer-section h3 {
    margin: 0;

    color: #d0d0d0;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================
   FOOTER LINE
========================= */

.footer-line {
    width: 65px;
    height: 1px;

    margin: 14px auto 20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #900000,
            transparent
        );
}


/* =========================
   FOOTER TEXT
========================= */

.footer-section h4 {
    margin: 0 0 12px;

    color: #b00000;

    font-size: 16px;
    letter-spacing: 2px;
}

.footer-section p {
    max-width: 300px;

    margin: 0 auto 14px;

    color: #888;

    font-size: 13px;
    line-height: 1.7;
}

.footer-section strong {
    color: #b00000;
}

.footer-small {
    color: #555 !important;

    font-size: 10px !important;
    letter-spacing: 1px;
}


/* =========================
   FOOTER BUTTON
========================= */

.footer-button {
    display: inline-block;

    margin-top: 8px;
    padding: 10px 24px;

    color: #d0d0d0;

    border: 1px solid #650000;

    background:
        linear-gradient(
            180deg,
            #2a0b0b,
            #140707
        );

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 2px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-button:hover {
    color: #ffffff;

    border-color: #a00000;

    background:
        linear-gradient(
            180deg,
            #500000,
            #240000
        );

    box-shadow:
        0 0 15px rgba(150, 0, 0, 0.25);
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    margin-top: 45px;
}

.footer-bottom span {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(100, 0, 0, 0.5)
        );
}

.footer-bottom span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(100, 0, 0, 0.5),
            transparent
        );
}

.footer-bottom p {
    margin: 0;

    color: #444;

    font-size: 9px;
    font-weight: bold;
    letter-spacing: 3px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section {
        min-height: auto;
    }
}


/* =========================
   MOBILE / RESPONSIVE
========================= */

@media (max-width: 600px) {

    /* ---------- GENERAL ---------- */

    body {
        padding: 20px 10px 50px;
        overflow-x: hidden;
    }


    /* ---------- HEADER ---------- */

    .calendar-header {
        margin-bottom: 25px;
        padding: 20px 15px 25px;
    }

    .calendar-header .month {
        font-size: 11px;
        letter-spacing: 6px;
    }

    .calendar-header h1 {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: 2px;
    }

    .calendar-header h1::after {
        width: 100px;
        margin-top: 10px;
    }

    .calendar-header .year {
        margin-top: 10px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .header-decoration {
        width: 35px;
        height: 35px;
        font-size: 22px;
    }

    .calendar-header > .header-decoration:first-child {
        left: 0;
    }

    .calendar-header > .header-decoration:last-child {
        right: 0;
    }

    .countdown {
        transform: scale(0.85);
        transform-origin: center;
    }


    /* ---------- CALENDAR PAPER ---------- */

    .calendar-paper {
        padding: 15px 10px;
    }


    /* ---------- WEEKDAYS ---------- */

    .calendar-weekdays {
        gap: 5px;
        margin-bottom: 8px;
    }

    .calendar-weekdays div {
        font-size: 9px;
        letter-spacing: 1px;
    }


    /* ---------- CALENDAR GRID ---------- */

    .calendar {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .empty-day {
        display: none;
    }


    /* ---------- MOVIE CARD ---------- */

    .day {
        min-height: 0;
        border-radius: 5px;
    }


    /* ---------- POSTER ---------- */

    .day img {
        height: 180px;
    }


    /* ---------- DAY NUMBER ---------- */

    .day h2 {
        width: 32px;
        height: 32px;

        top: 7px;
        left: 7px;

        font-size: 14px;
    }


    /* ---------- MOVIE TITLE ---------- */

    .movie-title {
        margin: 10px 8px 5px;

        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .movie-title::after {
        margin-top: 6px;
    }


    /* ---------- TODAY ---------- */

    .day.today {
        transform: translateY(-2px);
    }

    .day.today::after {
        top: 7px;
        right: 7px;

        padding: 4px 6px;

        font-size: 7px;
        letter-spacing: 1px;
    }


    /* ---------- LOCKED MOVIES ---------- */

    .locked-message {
        gap: 6px;

        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .lock-icon {
        width: 34px;
        height: 34px;

        font-size: 15px;
    }


    /* ---------- MOBILE MODAL ---------- */

    .movie-modal {
        padding: 15px;
    }

    .modal-content {
        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 340px;
        max-height: 90vh;

        overflow-y: auto;
    }

    #modalPoster {
        width: 100%;
        height: 260px;

        object-fit: contain;

        background: #080808;
    }

    .modal-info {
        width: 100%;
        box-sizing: border-box;

        padding: 16px 15px 20px;
    }

    .modal-info h2 {
        font-size: 23px;
        margin-top: 5px;
    }

    .modal-details {
        display: flex;

        justify-content: center;
        flex-wrap: wrap;

        gap: 8px;
    }

    #modalDescription {
        font-size: 13px;
        line-height: 1.5;
    }

    #modalWatch {
        width: 100%;
        box-sizing: border-box;

        text-align: center;
    }


    /* ---------- FOOTER ---------- */

    .site-footer {
        margin-top: 35px;
        padding: 30px 15px 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-bottom p {
        font-size: 9px;
        letter-spacing: 2px;
    }
}