/* app/css/app-style.css */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a; /* Dark Background */
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.auth-container {
    width: 100%;
    max-width: 400px; /* Mobile width */
    padding: 30px;
    background: #252525;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-area {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #FFD700; /* Primary Gold */
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #333;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box; /* Fixes padding width issue */
}

input:focus {
    outline: none;
    border-color: #FFD700;
}

.btn-gold {
    width: 100%;
    padding: 12px;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.auth-links {
    text-align: center;
    margin-top: 15px;
}

.auth-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.pass-wrapper {
    position: relative;
}

.pass-wrapper span {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert {
    background: #e74c3c;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
}

/* Dashboard Specific Styles */
.app-header {
    background: #252525;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.user-info { display: flex; align-items: center; gap: 10px; }
.profile-thumb { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #FFD700; }
.user-info h4 { margin: 0; color: #fff; font-size: 16px; }
.user-info small { color: #888; }

.main-content { padding: 20px; padding-bottom: 80px; }

.banner-container img { width: 100%; border-radius: 10px; margin-bottom: 20px; }

.status-card {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    padding: 20px;
    border-radius: 15px;
    color: #000;
    margin-bottom: 20px;
}
.balance-section h2 { margin: 5px 0 15px 0; font-size: 32px; font-weight: 700; }
.badge { padding: 5px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge.active { background: #000; color: #FFD700; }
.badge.inactive { background: #aa0000; color: #fff; }

.action-buttons { display: flex; gap: 10px; margin-top: 15px; }
.btn-small { flex: 1; padding: 10px; text-align: center; background: rgba(0,0,0,0.1); border-radius: 8px; text-decoration: none; color: #000; font-weight: 600; }
.btn-highlight { background: #000; color: #FFD700; }

.referral-box { background: #252525; padding: 20px; border-radius: 10px; text-align: center; margin-bottom: 20px; border: 1px solid #333; }
.link-copier { display: flex; gap: 5px; margin: 15px 0; }
.link-copier input { background: #111; border: 1px solid #444; color: #888; }
.link-copier button { width: 80px; background: #444; color: #fff; border: none; border-radius: 5px; cursor: pointer; }
.btn-whatsapp { display: block; background: #25D366; color: white; padding: 10px; border-radius: 5px; text-decoration: none; font-weight: 600; }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.menu-item { background: #252525; padding: 20px; border-radius: 10px; text-align: center; text-decoration: none; color: #ccc; border: 1px solid #333; transition: 0.3s; }
.menu-item:hover { border-color: #FFD700; color: #FFD700; }
.menu-item i { font-size: 24px; margin-bottom: 10px; display: block; color: #FFD700; }

.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #111; padding: 15px 0; display: flex; justify-content: space-around;
    border-top: 1px solid #333;
}
.bottom-nav a { color: #666; font-size: 20px; }
.bottom-nav a.active { color: #FFD700; }
.center-btn { 
    background: #FFD700; width: 50px; height: 50px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin-top: -25px; color: #000 !important; border: 4px solid #1a1a1a; 
}