/* ===== KuyaPads User Dashboard CSS ===== */
/* Complete monetization dashboard with earnings tracking */

/* ===== IMPROVED COLOR THEME VARIABLES ===== */
:root {
  --kp-color-primary: #4CAF50;
  --kp-color-primary-hover: #45a049;
  --kp-color-bg-primary: #1a1a1a;
  --kp-color-bg-secondary: rgba(40, 40, 40, 0.9);
  --kp-color-bg-tertiary: rgba(50, 50, 50, 0.8);
  --kp-color-text: #ffffff;
  --kp-color-text-secondary: #e0e0e0;
  --kp-color-border: rgba(255, 255, 255, 0.2);
  --kp-bg-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.kp-dashboard {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  color: #f0f0f0;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  gap: 2rem;
}

/* Profile Summary */
.profile-summary {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.profile-header {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px;
  position: relative;
  margin-top: -80px;
  background: rgba(30, 30, 30, 0.95);
}

.profile-avatar-section {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.profile-avatar-large {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: linear-gradient(135deg, #667eea, #764ba2);
  z-index: 2;
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-status {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  z-index: 3;
}

.profile-status.online {
  background: #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.avatar-level-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ffd700 0deg,
    #ffd700 var(--progress, 0%),
    rgba(255, 255, 255, 0.1) var(--progress, 0%)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.level-badge {
  position: absolute;
  top: -5px;
  right: 10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 700;
  z-index: 4;
}

.edit-avatar-btn {
  position: absolute;
  bottom: 5px;
  right: 25px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
}

.edit-avatar-btn:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.profile-verification {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.verification-checkmark {
  color: #4CAF50;
  font-size: 1.2em;
}

.verification-text {
  color: #4CAF50;
  font-weight: 600;
  font-size: 0.9em;
}

/* Profile Cover Section */
.profile-cover {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.edit-cover-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.edit-cover-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Profile Main Info */
.profile-main-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-name-section h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-display-name {
  font-size: 1.3em;
  color: #cccccc;
  margin: 5px 0;
}

.profile-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-size: 1.1em;
  font-weight: 600;
}

.title-tier {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 700;
}

/* Enhanced Badges */
.profile-badges-enhanced {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  transition: all 0.3s ease;
}

.badge.creator.premium {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
}

.badge.verified {
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: #ffffff;
}

.badge.premium {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
}

.badge.top-earner {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: #ffffff;
}

.badge.influencer {
  background: linear-gradient(45deg, #a8e6cf, #7fcdcd);
  color: #1a1a1a;
}

.badge.trader {
  background: linear-gradient(45deg, #ffa726, #ff9800);
  color: #ffffff;
}

.badge.educator {
  background: linear-gradient(45deg, #ab47bc, #8e24aa);
  color: #ffffff;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Profile Bio */
.profile-bio {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-bio p {
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  font-size: 1.1em;
}

.edit-bio-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.edit-bio-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Profile Actions */
.profile-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 120px;
  justify-content: center;
}

.dashboard-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.dashboard-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.profile-btn {
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.profile-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.edit-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.edit-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.share-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Enhanced Stats Grid */
.profile-stats-enhanced {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(50, 50, 50, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
  background: rgba(60, 60, 60, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.stat-icon {
  font-size: 2em;
  color: #4CAF50;
  opacity: 0.9;
  filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.3));
}

.stat-info {
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  display: block;
  color: #e0e0e0;
  font-size: 0.9em;
  margin-bottom: 3px;
}

.stat-growth {
  color: #4CAF50;
  font-size: 0.8em;
  font-weight: 600;
}

/* Profile Achievements */
.profile-achievements {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-achievements h3 {
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.achievements-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.achievement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.achievement-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

.achievement-icon.gold {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
}

.achievement-icon.silver {
  background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
  color: #1a1a1a;
}

.achievement-icon.bronze {
  background: linear-gradient(45deg, #cd7f32, #d4af37);
  color: #ffffff;
}

.achievement-icon.diamond {
  background: linear-gradient(45deg, #b9f2ff, #0891b2);
  color: #ffffff;
}

.achievement-name {
  color: #ffffff;
  font-size: 0.8em;
  font-weight: 600;
  text-align: center;
}

/* Profile Activity Timeline */
.profile-activity {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-timeline h3 {
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-dot.social {
  background: #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.timeline-dot.trading {
  background: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.timeline-dot.learn {
  background: #667eea;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.timeline-content {
  flex: 1;
}

.timeline-content p {
  color: #ffffff;
  margin: 0 0 5px 0;
  font-size: 0.9em;
}

.timeline-time {
  color: #888;
  font-size: 0.8em;
}

/* Earnings Overview */
.earnings-overview {
  grid-column: 1 / -1;
}

.earnings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.earnings-header h2 {
  color: var(--kp-color-text);
  font-size: 1.8rem;
  margin: 0;
}

.earnings-period select {
  background: var(--kp-color-bg-secondary);
  color: var(--kp-color-text);
  border: 1px solid var(--kp-color-border);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.earnings-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(40, 40, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.earnings-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: rgba(50, 50, 50, 0.95);
}

.earnings-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.earnings-icon {
  background: var(--kp-color-primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.earnings-info h3 {
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.earnings-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--kp-color-primary);
  margin: 0 0 0.5rem 0;
}

.earnings-usd {
  color: var(--kp-color-text-secondary);
  font-size: 0.9rem;
}

.earnings-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.earnings-breakdown span {
  font-size: 0.8rem;
  color: var(--kp-color-text-secondary);
}

.total-balance .earnings-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-earnings .earnings-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.trading-earnings .earnings-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.learn-earnings .earnings-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.watch-earnings .earnings-icon {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.padify-earnings .earnings-icon {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.studio-earnings .earnings-icon {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.referral-earnings .earnings-icon {
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

/* Earnings Chart */
.earnings-chart {
  grid-column: 1 / -1;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--kp-color-bg-secondary);
  border: 1px solid var(--kp-color-border);
}

.earnings-chart h2 {
  color: var(--kp-color-text);
  margin-bottom: 1.5rem;
}

.chart-container {
  position: relative;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kp-color-text-secondary);
  font-size: 1.1rem;
}

/* Recent Transactions */
.recent-transactions {
  grid-column: 1 / -1;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--kp-color-bg-secondary);
  border: 1px solid var(--kp-color-border);
}

.recent-transactions h2 {
  color: var(--kp-color-text);
  margin-bottom: 1.5rem;
}

.transactions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.transaction-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.transaction-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.transaction-icon.social {
  background: #f5576c;
}

.transaction-icon.trading {
  background: #4facfe;
}

.transaction-icon.learn {
  background: #43e97b;
}

.transaction-icon.watch {
  background: #fa709a;
}

.transaction-icon.marketplace {
  background: #764ba2;
}

.transaction-details {
  flex: 1;
}

.transaction-details h4 {
  margin: 0 0 0.25rem 0;
  color: var(--kp-color-text);
  font-size: 0.9rem;
}

.transaction-details p {
  margin: 0 0 0.25rem 0;
  color: var(--kp-color-text-secondary);
  font-size: 0.8rem;
}

.transaction-time {
  color: var(--kp-color-text-secondary);
  font-size: 0.7rem;
}

.transaction-amount {
  font-weight: 600;
  font-size: 0.9rem;
}

.transaction-amount.earned {
  color: #10b981;
}

.transaction-amount.spent {
  color: #ef4444;
}

.view-all-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--kp-color-primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.view-all-btn:hover {
  background: var(--kp-color-primary-hover);
}

/* Withdrawal Options */
.withdrawal-options {
  grid-column: 1 / -1;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--kp-color-bg-secondary);
  border: 1px solid var(--kp-color-border);
}

.withdrawal-options h2 {
  color: var(--kp-color-text);
  margin-bottom: 1.5rem;
}

.withdrawal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.withdrawal-method {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.withdrawal-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.method-icon {
  font-size: 2rem;
  color: var(--kp-color-primary);
  margin-bottom: 1rem;
}

.withdrawal-method h3 {
  color: var(--kp-color-text);
  margin-bottom: 0.5rem;
}

.withdrawal-method p {
  color: var(--kp-color-text-secondary);
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.withdraw-btn {
  padding: 0.5rem 1rem;
  background: var(--kp-color-primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.withdraw-btn:hover {
  background: var(--kp-color-primary-hover);
}

/* Achievements */
.achievements {
  grid-column: 1 / -1;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--kp-color-bg-secondary);
  border: 1px solid var(--kp-color-border);
}

.achievements h2 {
  color: var(--kp-color-text);
  margin-bottom: 1.5rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.achievement {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.achievement.unlocked {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.achievement.locked {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

.achievement-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.achievement.unlocked .achievement-icon {
  color: #10b981;
}

.achievement.locked .achievement-icon {
  color: var(--kp-color-text-secondary);
}

.achievement h3 {
  color: var(--kp-color-text);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.achievement p {
  color: var(--kp-color-text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Withdrawal Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--kp-color-bg-secondary);
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--kp-color-border);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--kp-color-border);
}

.modal-header h2 {
  color: var(--kp-color-text);
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: var(--kp-color-text);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--kp-color-text);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--kp-color-border);
  border-radius: 0.5rem;
  color: var(--kp-color-text);
  font-size: 0.9rem;
}

.form-group small {
  color: var(--kp-color-text-secondary);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

.withdrawal-summary {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.withdrawal-summary p {
  margin: 0.5rem 0;
  color: var(--kp-color-text);
  display: flex;
  justify-content: space-between;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--kp-color-primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--kp-color-primary-hover);
}

/* Monetization Requirements Styles */
.requirements-section {
  margin-bottom: 1.5rem;
}

.requirements-section h4 {
  color: #facc15;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(250, 204, 21, 0.3);
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.requirement-item i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  color: #10b981;
}

.requirement-item.completed i {
  color: #10b981;
}

.requirement-item:not(.completed) i {
  color: #6b7280;
}

.requirement-item span {
  color: #e0e0e0;
  line-height: 1.4;
}

.requirement-item:not(.completed) span {
  color: #9ca3af;
}

.requirement-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding-left: 0.5rem;
}

.monetization-card {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.monetization-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(250, 204, 21, 0.3);
}

.monetization-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.monetization-icon i {
  font-size: 1.5rem;
  color: #1f2937;
}

.monetization-info h3 {
  color: #facc15;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dashboard-container {
    padding: 1rem;
    gap: 1rem;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .profile-avatar-large {
    width: 100px;
    height: 100px;
  }

  .profile-info h1 {
    font-size: 1.5rem;
  }

  .profile-stats {
    gap: 1rem;
  }

  .earnings-grid {
    grid-template-columns: 1fr;
  }

  .earnings-card {
    flex-direction: column;
    text-align: center;
  }

  .earnings-icon {
    margin: 0 auto 1rem auto;
  }

  .withdrawal-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .profile-header {
    padding: 20px;
  }
  
  .profile-avatar-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .profile-avatar-large {
    width: 120px;
    height: 120px;
  }
  
  .avatar-level-ring {
    width: 136px;
    height: 136px;
  }
  
  .profile-name-section h1 {
    font-size: 2em;
  }
  
  .profile-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .action-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .achievements-scroll {
    gap: 10px;
  }
  
  .achievement-item {
    min-width: 80px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .profile-cover {
    height: 150px;
  }
  
  .profile-header {
    margin-top: -60px;
  }
  
  .profile-avatar-large {
    width: 100px;
    height: 100px;
  }
  
  .avatar-level-ring {
    width: 116px;
    height: 116px;
  }
  
  .badge-row {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
