/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #121212;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    width: 350px;
    text-align: center;
    border: 1px solid #333;
    animation: fadeIn 0.8s ease;
}

h2 {
    color: #00ff88;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #b3b3b3;
    font-size: 0.9rem;
}

input {
    width: 100%;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #00ff88;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.btn {
    width: 100%;
    padding: 12px;
    background: #00ff88;
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn:hover {
    background: #00cc6a;
    transform: scale(1.02);
}

.link {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #b3b3b3;
}

.link a {
    color: #00ff88;
    text-decoration: none;
}

.error {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Dashboard Specific Styles --- */
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.wallet-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.wallet-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
}

.balance-title {
    color: #b3b3b3;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-amount {
    font-size: 3rem;
    color: #00ff88;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
}

.btn-outline:hover {
    background: #00ff88;
    color: #000;
}

.back-link {
    display: block;
    margin-top: 20px;
    color: #b3b3b3;
    text-decoration: none;
}
.back-link:hover { color: #fff; }