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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #050b18 0%, #2f3c43 100%);
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    padding: 30px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    min-height: 94vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bold Cinematic Header Styles with Sans-Serif Font */
.main-header {
    margin-bottom: 80px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* .main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
} */

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.header-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}

.issue-number, .date-range {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.title-container {
    margin: 20px 0 50px;
    position: relative;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 7rem;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.title-line:first-child {
    margin-bottom: 10px;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.subtitle::before, .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.subtitle::before {
    left: -80px;
}

.subtitle::after {
    right: -80px;
}

.header-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.publisher {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Movie Grid Styles with Clickable Cards */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.movie-card-link {
    text-decoration: none;
    color: white;
    display: block;
    height: 100%;
    position: relative;
}

.movie-card-link.full-width {
    grid-column: 1 / -1;
}

.movie-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.movie-card-link:hover .movie-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.movie-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.movie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card-link:hover .movie-image img {
    transform: scale(1.05);
}

/* Countdown Number Styles */
.countdown-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.movie-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.movie-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.director {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
    font-weight: 400;
}

.review {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    opacity: 0.9;
}

.more-btn {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.more-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.more-btn:active {
    transform: translateY(0);
}

footer {
    text-align: center;
    margin-top: 70px;
    padding: 30px 0;
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Responsive grid adjustments */
@media (min-width: 768px) {
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .movie-card-link.full-width {
        grid-column: span 2;
    }
    
    .full-width .movie-image {
        height: 350px;
    }
    
    .main-title {
        font-size: 8rem;
    }
}

@media (min-width: 1024px) {
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .movie-card-link.full-width {
        grid-column: span 3;
    }
    
    .full-width .movie-card {
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: 1fr;
    }
    
    .full-width .movie-image {
        height: 100%;
    }
    
    .full-width .movie-content {
        padding: 35px;
    }
    
    .full-width h3 {
        font-size: 1.5rem;
    }
    
    .full-width .review {
        font-size: 1.1rem;
    }
    
    .main-title {
        font-size: 9rem;
    }
    
    .countdown-number {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

/* Additional responsive adjustments */
@media (max-width: 767px) {
    .main-title {
        font-size: 4.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    .subtitle::before, .subtitle::after {
        width: 30px;
    }
    
    .subtitle::before {
        left: -40px;
    }
    
    .subtitle::after {
        right: -40px;
    }
    
    .movie-image {
        height: 250px;
    }
    
    .main-header {
        padding: 40px 0;
        margin-bottom: 50px;
    }
    
    .countdown-number {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 3.2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .subtitle::before, .subtitle::after {
        display: none;
    }
    
    .movie-content h3 {
        font-size: 1.1rem;
    }
    
    .review {
        font-size: 0.9rem;
    }
    
    .header-top {
        margin-bottom: 20px;
    }
    
    .issue-number, .date-range {
        font-size: 0.8rem;
    }
    
    .main-header {
        padding: 30px 0;
    }
    
    .countdown-number {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
}