body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f0f0f0; /* Light gray background */
    margin: 0;
    overflow: hidden;
}

.container {
    background-color: #ffffff; /* White background for container */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 700px;
    width: 90%;
    position: relative;
    z-index: 1;
    border: 1px solid #e0e0e0; /* Subtle border */
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background-color: #ffffff; /* Slightly off-white for logo background */
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ededed;
}

.logo img {
    margin-right: 10px;
}

.logo span {
    font-weight: bold;
    font-size: 1.2em;
    color: #333; /* Darker grey for text */
}

.content {
    margin-bottom: 30px;
}

.emoji {
    font-size: 3em;
    margin-bottom: 20px;
    filter: grayscale(100%); /* Make emoji grayscale */
}

.subtitle {
    font-size: 0.9em;
    color: #777; /* Medium grey */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

h1 {
    font-size: 3em;
    color: #333; /* Dark grey for headings */
    margin: 0;
    line-height: 1.2;
    font-weight: bold;
}

.description {
    color: #555; /* Slightly lighter grey */
    font-size: 1.1em;
    margin-top: 15px;
    line-height: 1.6;
}

.notify-button {
    background-color: #333; /* Dark grey button */
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 1.1em;
    cursor: pointer;
    display: inline-flex; /* Changed to inline-flex to fix width */
    align-items: center;
    justify-content: center;
    margin: 30px auto 0 auto;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Removed underline */
}

.notify-button:hover {
    background-color: #555; /* Lighter grey on hover */
}

.notify-button i {
    margin-right: 10px;
}

.social-links a {
    color: #777; /* Medium grey for social icons */
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #333; /* Darker grey on hover */
}

/* Removed decorative elements */

#emoji-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none; /* Allows clicks to pass through */
}

#emoji-background .emoji-item {
    position: absolute;
    font-size: 2em; /* Base size, will be varied by JS */
    opacity: 0.5; /* Subtle transparency */
    color: #888; /* Monochromatic color */
    user-select: none;
} 