* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f1117;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #1a1d26;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 1px solid #2a2e3d;
}

.logo {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo span {
    color: #00a2ff;
}

.tagline {
    color: #a0a5b5;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about {
    margin-bottom: 30px;
}

.about h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #00a2ff;
}

.about p {
    color: #c5c9d6;
    line-height: 1.6;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.discord-btn {
    background-color: #5865F2;
    color: white;
}

.discord-btn:hover {
    background-color: #4752c4;
}

.roblox-btn {
    background-color: #00a2ff;
    color: white;
}

.roblox-btn:hover {
    background-color: #0082cc;
}

footer {
    border-top: 1px solid #2a2e3d;
    padding-top: 20px;
    color: #6c7284;
    font-size: 0.85rem;
}