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

html,
body {
    height: 100%;
    font-family: 'Oswald', sans-serif;
    background: url('https://images.pexels.com/photos/7991379/pexels-photo-7991379.jpeg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

header,
footer {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    padding: 1rem 2rem;
    color: white;
    z-index: 1000;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
}

nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff2e63;
}

main {
    position: absolute;
    top: 70px;
    /* height of header */
    bottom: 80px;
    /* height of footer */
    left: 0;
    right: 0;
    overflow-y: auto;
    padding: 2rem;
    text-align: center;
    backdrop-filter: brightness(0.7);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px #000;
}

p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px #000;
}

.subscribe {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

input[type="email"] {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    outline: none;
    min-width: 250px;
}

button {
    padding: 10px 20px;
    background: #ff2e63;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.countdown {
    margin-top: 30px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000;
}

.long-content {
    margin-top: 3rem;
    max-width: 800px;
    margin-inline: auto;
    text-align: left;
    line-height: 1.6;
    color: #ddd;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 16px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.2rem;
    margin: 1rem 0;
    color: #ff2e63;
}

.features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    color: #ddd;
}

.features li {
    margin-bottom: 0.5rem;
}

.card button {
    margin-top: auto;
    padding: 10px 20px;
    background: #ff2e63;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.card button:hover {
    background: #ff1e53;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff2e63;
}

.footer-copy {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}