body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #a8c0ff, #3f2b96);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-image {
    height: 30px;
    margin-right: 10px;
}

.content {
    margin: 40px 0;
}

.emoji {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 10px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

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

.notify-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    flex-grow: 1;
    max-width: 300px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.notify-form button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.notify-form button:hover {
    background-color: #0056b3;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}
