/* Background dengan warna khas Blue Archive */
body {
    font-family: Arial, sans-serif;
    background: url('https://files.catbox.moe/czin5s.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Kontainer Utama */
.container {
    background: rgba(10, 25, 47, 0.9); /* Warna biru gelap dengan transparansi */
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 0 15px rgba(0, 173, 255, 0.8); /* Glow biru khas Blue Archive */
}

/* Logo */
.logo {
    width: 100px;
    margin-bottom: 10px;
}

/* Heading */
h1 {
    color: #00aaff; /* Biru cerah */
    font-size: 28px;
}

h2 {
    color: #66ccff; /* Biru lebih soft */
    font-size: 22px;
    margin-top: 10px;
}

/* Deskripsi */
.description {
    font-size: 16px;
    line-height: 1.6;
}

/* List */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    background: rgba(0, 150, 255, 0.3);
    padding: 8px;
    border-radius: 5px;
    margin: 5px 0;
}

/* Tombol Bergabung */
.button {
    display: inline-block;
    background: #007acc; /* Biru khas */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 150, 255, 0.5);
}

.button:hover {
    background: #005fa3; /* Warna lebih gelap saat hover */
}

/* Link Sosial Media */
.social-links a {
    color: #00aaff;
    font-weight: bold;
    text-decoration: none;
    margin: 0 5px;
}

.social-links a:hover {
    color: #66ccff;
    text-decoration: underline;
}
