* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fdfdfd;
    color: #2c3e50;
    line-height: 1.7;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Header */
.dark-header {
    background-color: #222;
    text-align: center;
    padding: 35px 20px 25px;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo {
    max-width: 220px;
    height: auto;
}

.tagline {
    font-size: 1.15em;
    font-weight: 500;
    color: #ccc;
    margin: 0;
}

/* "Visit the Store" button */
.store-button {
    background-color: #ffcc00;
    color: #222;
    padding: 10px 24px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.store-button:hover {
    background-color: #ffdb33;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .dark-header {
        padding: 30px 15px 20px;
    }
    .logo {
        max-width: 160px;
    }
    .tagline {
        font-size: 1em;
    }
    .store-button {
        padding: 9px 20px;
        font-size: 0.95em;
    }
}

/* Cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    border-color: #d1e8ff;
}

.listing-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.media-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f5f7fa;
}

.poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.media-wrapper:hover .poster {
    transform: scale(1.04);
}

.card-content {
    padding: 28px 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.45em;
    margin-bottom: 14px;
    color: #1a3c5e;
}

.card p {
    flex: 1;
    font-size: 0.98em;
    color: #4a6078;
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Card CTA button */
.card-cta {
    display: inline-block;
    background-color: #ffcc00;
    color: #222;
    padding: 8px 18px;
    font-size: 0.95em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    align-self: flex-start;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.card-cta:hover {
    background-color: #ffdb33;
    transform: translateY(-2px);
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #e6f4ff, #d9f0ff);
    color: #1a3c5e;
    text-align: center;
    padding: 60px 20px;
    border-radius: 20px;
    margin: 50px 0;
    border: 1px solid #cce5ff;
}

.cta-section h2 {
    font-size: 2.3em;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.15em;
    max-width: 720px;
    margin: 0 auto 28px;
}

.cta-button {
    display: inline-block;
    background-color: #028090;
    color: white;
    padding: 16px 48px;
    font-size: 1.25em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(2, 128, 144, 0.25);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #026f7a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 128, 144, 0.35);
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px 40px;
    background-color: #222;
    color: #ccc;
    font-size: 0.92em;
}

.footer-info {
    margin: 12px 0;
    font-weight: 500;
}

.footer-verse {
    font-style: italic;
    margin-top: 12px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    .cta-section {
        padding: 50px 15px;
    }
    .cta-section h2 {
        font-size: 2em;
    }
    .card-cta {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}