body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #1d1f21;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}
.container {
    text-align: center;
    z-index: 1;
    padding: 30px;
    max-width: 800px;
}
h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.slogan {
    font-size: 1.2em;
    margin-bottom: 40px;
}
.btn {
    background-color: #0088cc;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #0070a3;
}
.top-right {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}
.bot-link {
    display: block;
    margin-top: 20px;
    color: #00afff;
    text-decoration: none;
    font-size: 1em;
}
.features {
    margin-top: 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    font-size: 1em;
}
.features ul {
    list-style: none;
    padding: 0;
}
.features li::before {
    content: \"✅\";
    margin-right: 10px;
}
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: #999;
    z-index: 2;
}

