@font-face {
    font-family: 'Growtopia';
    src: url('https://growtopiagame.com/static/growtopia.woff') format('woff');
}
body {
    background: linear-gradient(135deg, #1a0f0f, #2e1a1a); /* Warna merah gelap */
    color: white;
    font-family: 'Growtopia', sans-serif;
}
.glass {
    background: rgba(255, 0, 0, 0.1); /* Latar belakang merah transparan */
    backdrop-filter: blur(12px);
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

.btn-glow {
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5); /* Glow merah */
    background: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8); /* Glow lebih kuat saat hover */
}
