:root {
    --primary: #6366f1;
    --secondary: #ec4899;
    --accent: #8b5cf6;
    --dark: #0f172a;
    --card-bg: #1e293b;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

/* Auth Container */
.lad-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    font-family: 'Inter', sans-serif;
}

.lad-auth-card {
    background: var(--card-bg);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.lad-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.lad-auth-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 800;
}

.lad-auth-header p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.lad-input-group {
    margin-bottom: 20px;
}

.lad-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.lad-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
    transition: 0.3s;
}

.lad-input-group input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.lad-radio-group {
    margin-bottom: 25px;
}

.lad-checkbox {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}

.lad-checkbox input {
    margin-right: 10px;
    accent-color: var(--secondary);
}

.lad-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.lad-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.lad-switch-auth {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.lad-switch-auth a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.lad-captcha-container {
    margin-bottom: 20px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.lad-captcha-container label {
    font-weight: 800;
    color: var(--secondary);
    white-space: nowrap;
}

.lad-captcha-container input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 18px;
    text-align: center;
    outline: none;
}

.lad-payout-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 25px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.lad-payout-btn:hover {
    background: #334155;
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* Dashboard Styles */
.lad-dash-shell {
    max-width: 480px;
    margin: 0 auto;
    background: #020617;
    min-height: 100vh;
    color: white;
    font-family: 'Inter', sans-serif;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.lad-dash-top {
    background: linear-gradient(180deg, #1e1b4b 0%, #020617 100%);
    padding: 30px 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.lad-profile-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.lad-avatar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
}

.lad-avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--secondary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.lad-user-info h3 {
    margin: 0;
    font-size: 20px;
}

.lad-user-info p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: var(--text-muted);
}

.lad-notif-bell {
    margin-left: auto;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 12px;
}

.lad-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lad-stat-card {
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.lad-stat-card.primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.lad-stat-card.accent {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    margin: 10px 0;
}

.stat-trend {
    font-size: 11px;
    font-weight: 600;
}

.lad-dash-body {
    padding: 20px;
}

.lad-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 25px;
}

.lad-section-title h4 {
    margin: 0;
    font-size: 18px;
}

.lad-section-title a {
    color: var(--secondary);
    font-size: 12px;
    text-decoration: none;
}

.lad-promo-card {
    background: linear-gradient(90deg, #ec4899 0%, #f472b6 100%);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.promo-content h5 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.promo-content p {
    margin: 0 0 15px 0;
    font-size: 12px;
    opacity: 0.9;
    max-width: 180px;
}

.promo-btn {
    background: white;
    color: #ec4899;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

.promo-icon {
    font-size: 50px;
    position: absolute;
    right: 20px;
    opacity: 0.2;
}

.lad-task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lad-task-item {
    background: #1e293b;
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.task-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.task-blue { background: rgba(59, 130, 246, 0.2); }
.task-purple { background: rgba(139, 92, 246, 0.2); }

.task-info h6 {
    margin: 0;
    font-size: 15px;
}

.task-info p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: var(--text-muted);
}

.task-points {
    margin-left: auto;
    font-weight: 800;
    color: #10b981;
}

.lad-bottom-nav {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 440px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

.lad-bottom-nav a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lad-bottom-nav a span {
    font-size: 11px;
    font-weight: 500;
}

.lad-bottom-nav a.active {
    color: var(--secondary);
}

