body {
    font-family: 'Comic Sans MS', Arial, sans-serif;
    background: linear-gradient(135deg, #ff4b1f, #1fddff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin: 0;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
}

.funny-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn {
    text-decoration: none;
    color: white;
    background: #ff007f;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #ff0055;
}

.highlight {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
}