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

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* Clean white background */
    overflow: hidden; /* Prevent scrolling caused by floating shapes */
    position: relative;
    text-align: center;
}

.content {
    z-index: 10;
    position: relative;
    padding: 0 20px;
}

/* Typography styles matching the image */
.title {
    font-size: 6.5rem;
    font-weight: 900; /* Extra bold */
    color: #1a1a1a; /* Solid black/dark grey */
    line-height: 1.1;
    letter-spacing: 12px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300; /* Light font weight */
    color: #555555;
    line-height: 1.7;
    letter-spacing: 1.5px;
    margin-bottom: 3.5rem;
}

/* Button Styling */
.notify-btn {
    background-color: #03e3cc; /* Bright cyan/teal matching image */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    border: none;
    padding: 16px 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 1px;
}

.notify-btn:hover {
    background-color: #02c7b3; /* Slightly darker on hover */
    transform: translateY(-3px);
}

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

/* Background Shapes Container */
.shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Allows clicking through the shapes */
}

.shape {
    position: absolute;
    /* Adding a subtle floating animation */
    animation: float 10s ease-in-out infinite alternate;
}

/* Adding staggered animation delays for organic movement */
.shape:nth-child(even) {
    animation-delay: -5s;
    animation-duration: 12s;
}

.shape:nth-child(3n) {
    animation-delay: -2s;
    animation-duration: 15s;
}

.circle {
    border-radius: 50%;
}

.text {
    line-height: 1;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating animation using CSS custom properties for rotation */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(var(--rotation, 0deg));
    }
    100% {
        transform: translate(15px, 20px) rotate(calc(var(--rotation, 0deg) + 15deg));
    }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .shapes-container {
        opacity: 0.6; /* Reduce shapes visibility on small screens to avoid clutter */
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    .subtitle {
        font-size: 0.95rem;
    }
    .notify-btn {
        padding: 14px 40px;
    }
}
