body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0f0f0f;
    color: #fff;
    text-align: center;
    user-select: none;
    -webkit-user-drag: none;
}

.container {
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    user-select: none;
    -webkit-user-drag: none;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.description {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    width: 100%;
    margin-bottom: 40px;
}

.card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    font-size: 1.1em;
    text-align: center;
}

.join-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.join-btn:hover {
    background: #4752c4;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.emoji-gif {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    -webkit-user-drag: none;
}