body {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Arial, sans-serif;
    background: linear-gradient(120deg, #f0f0f5, #dcdce1);
    color: #333;
    text-align: center;
    padding: 0;
    margin: 0;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gradient-text {
    background: linear-gradient(45deg, #007aff, #5ac8fa);
    -webkit-background-clip: text;
    color: transparent;
}

.button {
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.button:hover {
    background: rgba(255, 255, 255, 0.5);
}

#footer {
    font-size: 16px;
    color: black;
    text-decoration: none;
}