@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Glassmorphism Card Logic */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 2rem;
    margin: 1rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

input[type="text"] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 15px;
    border-radius: 10px;
    color: white;
    width: 60%;
    backdrop-filter: blur(5px);
    font-size: 1.1rem;
}

input::placeholder { color: rgba(255, 255, 255, 0.6); }

button {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover { background: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }

table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
a.delete-btn { color: #ff6b6b; text-decoration: none; font-weight: bold; }

.token-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.token-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.token-word {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.token-tag {
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 20px;
    color: #ffda79; /* Warna kuning emas biar kontras */
    font-weight: bold;
    letter-spacing: 1px;
}