* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
  line-height: 1.5;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Pink Section */
.left-section {
  background: linear-gradient(180deg, #e91e63 0%, #ad1457 50%, #6a1b9a 100%);
  color: white;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.logo i {
  font-size: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.register-btn {
  background: linear-gradient(45deg, #ffffff, #f5f5f5);
  color: #e91e63;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-btn:hover {
  background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.content {
  padding: 30px;
  flex: 1;
}

.content h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.icon-circle {
  background: rgba(255, 255, 255, 0.25);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.info-item:hover .icon-circle {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.icon-circle i {
  font-size: 16px;
  color: white;
}

.info-text h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.info-text p {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.4;
}

.earnings-section {
  margin-top: 40px;
  text-align: center;
}

.earnings-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: #ffeb3b;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.earnings-section p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.start-btn {
  background: #ffeb3b;
  color: #333;
  border: none;
  padding: 15px 35px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
}

.start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

.bottom-card {
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 30px 30px;
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.bottom-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.bottom-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* Center White Section */
.center-section {
  background: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.main-card h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.main-card > p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.testimonial {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid #e91e63;
}

.testimonial p {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(45deg, #e91e63, #6a1b9a);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.name {
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.stars {
  color: #ffc107;
  font-size: 14px;
  margin-top: 2px;
}

.terms {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.terms a {
  color: #e91e63;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.footer-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.footer-section h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.footer-section > p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.links-column h4 {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.links-column ul {
  list-style: none;
}

.links-column li {
  margin-bottom: 8px;
}

.links-column a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.links-column a:hover {
  color: #e91e63;
}

/* Right Sidebar */
.right-section {
  background: #f8f9fa;
  border-left: 1px solid #e0e0e0;
}

.sidebar-card {
  padding: 25px;
  height: 100%;
}

.sidebar-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.sidebar-card > p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.sidebar-links, .sidebar-support {
  margin-bottom: 25px;
}

.sidebar-links h4, .sidebar-support h4 {
  color: #333;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.sidebar-links ul, .sidebar-support ul {
  list-style: none;
}

.sidebar-links li, .sidebar-support li {
  margin-bottom: 8px;
}

.sidebar-links a, .sidebar-support a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.sidebar-links a:hover, .sidebar-support a:hover {
  color: #e91e63;
}

.social-section {
  margin: 25px 0;
}

.social-section h4 {
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons .instagram { background: #e91e63; }
.social-icons .facebook { background: #1877f2; }
.social-icons .twitter { background: #1da1f2; }
.social-icons .whatsapp { background: #25d366; }

.social-section p {
  font-size: 12px;
  color: #666;
}

.footer-text {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-text p {
  font-size: 11px;
  color: #999;
  margin-bottom: 5px;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    grid-template-columns: 1fr 350px;
  }
}

@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }

  .right-section {
    display: none;
  }

  .header {
    padding: 20px 25px;
  }

  .logo {
    font-size: 18px;
  }

  .logo i {
    font-size: 22px;
    padding: 6px;
  }
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .header {
    padding: 20px;
    position: relative;
  }

  .logo {
    font-size: 18px;
  }

  .register-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .content {
    padding: 25px 20px;
  }

  .content h1 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
  }

  .info-item {
    margin-bottom: 20px;
  }

  .info-text h3 {
    font-size: 16px;
  }

  .info-text p {
    font-size: 13px;
  }

  .earnings-section {
    margin-top: 30px;
  }

  .earnings-section h2 {
    font-size: 20px;
  }

  .price {
    font-size: 36px;
  }

  .start-btn {
    padding: 12px 30px;
    font-size: 15px;
  }

  .bottom-card {
    margin: 20px;
    padding: 20px;
  }

  .bottom-card h3 {
    font-size: 18px;
  }

  .main-card {
    padding: 25px 20px;
  }

  .main-card h2 {
    font-size: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px;
  }

  .logo {
    font-size: 16px;
    gap: 8px;
  }

  .logo i {
    font-size: 20px;
    padding: 6px;
  }

  .register-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .content {
    padding: 20px 15px;
  }

  .content h1 {
    font-size: 22px;
  }

  .icon-circle {
    width: 35px;
    height: 35px;
  }

  .icon-circle i {
    font-size: 14px;
  }

  .price {
    font-size: 32px;
  }

  .start-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .bottom-card {
    margin: 15px;
    padding: 18px;
  }

  .main-card {
    padding: 20px 15px;
  }

  .center-section {
    padding: 15px;
  }

  .footer-section {
    padding: 18px 15px;
  }

  .registration-container {
    padding: 15px;
  }

  .registration-card {
    padding: 20px;
  }

  .dashboard-container {
    padding: 10px;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
  }
}

/* Registration Form Styles */
.registration-container {
  min-height: 100vh;
  background: linear-gradient(180deg, #e91e63 0%, #ad1457 50%, #6a1b9a 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.registration-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.back-btn {
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #e0e0e0;
  transform: translateX(-2px);
}

.registration-header h2 {
  color: #e91e63;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.sub-label {
  color: #666;
  font-weight: 500;
  font-size: 13px;
  margin-top: 5px;
}

.form-group input,
.form-group select {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
  z-index: 1;
}

.input-with-icon input,
.input-with-icon select {
  padding-left: 50px;
}

.submit-btn {
  background: linear-gradient(45deg, #e91e63, #ad1457);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

/* Dashboard Styles */
.dashboard-container {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 20px;
}

.dashboard-header {
  background: linear-gradient(45deg, #e91e63, #ad1457);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.dashboard-logo i {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
}

.version {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.balance {
  font-size: 20px;
  font-weight: 700;
}

.balance small {
  font-size: 12px;
  opacity: 0.8;
}

.withdraw-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.withdraw-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.user-stats {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #e91e63, #ad1457);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-avatar i {
  font-size: 24px;
  color: white;
}

.user-details h3 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.user-details p {
  color: #666;
  font-size: 14px;
}

.balance-card {
  background: linear-gradient(45deg, #f8f9fa, #e3f2fd);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.balance-card h4 {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.balance-amount {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.balance-amount small {
  font-size: 14px;
  color: #666;
}

.balance-note {
  color: #666;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.user-info-card {
  grid-column: 1 / -1;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span:first-child {
  color: #666;
  font-weight: 500;
}

.info-row span:last-child {
  color: #333;
  font-weight: 600;
}

.status-pending {
  color: #ff9800;
  display: flex;
  align-items: center;
  gap: 5px;
}

.progress-section {
  grid-column: 1 / -1;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.progress-section h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.progress-bar {
  background: #f0f0f0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-fill {
  background: linear-gradient(45deg, #e91e63, #ad1457);
  height: 100%;
  width: 0%;
  transition: width 0.5s ease;
}

.progress-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg, #e91e63, #ad1457);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #e0e0e0;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e9ecef;
  border-color: #ccc;
}

.follow-instruction {
  text-align: center;
  margin-top: 20px;
}

.follow-instruction h3 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.follow-instruction p {
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.follow-instruction .fas {
  color: #e91e63;
}

.profiles-section {
  grid-column: 1 / -1;
}

.profiles-section h4 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.profile-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.profile-header {
  display: flex;  gap: 15px;
  margin-bottom: 15px;
}

.profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
}

.verified {
  color: #1da1f2;
  font-size: 14px;
}

.profile-username {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.profile-reward {
  background: linear-gradient(45deg, #4caf50, #45a049);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
  padding: 10px 0;
  background: #f8f9fa;
  border-radius: 8px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.stat-label {
  font-size: 12px;
  color: #666;
}

.profile-category {
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 500;
}

.profile-description {
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.follow-btn {
  width: 100%;
  background: linear-gradient(45deg, #1877f2, #0d6efd);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.follow-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.follow-btn.completed {
  background: linear-gradient(45deg, #22c55e, #16a34a);
  cursor: not-allowed;
  opacity: 1;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.follow-btn:disabled {
  opacity: 1;
}

.follow-btn .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Completion Popup Styles */
.completion-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.completion-overlay.show {
  opacity: 1;
}

.completion-popup {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.completion-overlay.show .completion-popup {
  transform: scale(1);
}

.completion-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e63, #9c27b0, #673ab7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.completion-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
  border-radius: 50%;
}

.completion-icon i {
  font-size: 32px;
  color: white;
  z-index: 1;
}

.completion-popup h2 {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.completion-popup h3 {
  color: #e91e63;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.completion-popup p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.completion-popup .instruction {
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
}

.withdraw-money-btn {
  background: linear-gradient(45deg, #22c55e, #16a34a);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.withdraw-money-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.withdraw-money-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.completion-popup .note {
  font-size: 12px;
  color: #999;
  font-style: italic;
  margin-bottom: 0;
}

/* Withdrawal Unlock Page Styles */
.withdrawal-container {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
}

.withdrawal-header {
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.withdrawal-header h2 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.urgency-text {
  color: #ffeb3b;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

/* Video Section */
.video-section {
  margin-bottom: 25px;
}

.video-container {
  margin-bottom: 15px;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.video-caption i {
  color: #e91e63;
}

/* Live Activity Feed */
.live-activity {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  border-left: 4px solid #28a745;
}

.activity-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #28a745;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
}

.pulse {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.activity-header h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

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

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.activity-avatar {
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, #e91e63, #9c27b0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.activity-text {
  flex: 1;
  font-size: 14px;
}

.activity-text strong {
  color: #333;
}

.time {
  color: #666;
  font-size: 12px;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.trust-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trust-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.trust-text span {
  color: #666;
  font-size: 13px;
}

/* Reviews Section */
.reviews-section {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.reviews-section h4 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.review-card {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid #ffc107;
}

.stars {
  font-size: 14px;
  margin-bottom: 8px;
}

.review-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666;
}

.verified-badge {
  color: #1da1f2;
  font-size: 12px;
}

/* Enhanced Balance Display */
.earnings-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(45deg, #ff4757, #ff3742);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(255, 71, 87, 0.5); }
  to { box-shadow: 0 0 20px rgba(255, 71, 87, 0.8); }
}

/* Enhanced Fee Amount */
.fee-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 16px;
  margin-bottom: 5px;
}

.fee-value {
  color: #e91e63;
  font-weight: 700;
  font-size: 24px;
}

/* Timer Section */
.timer-section {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.timer-icon {
  font-size: 24px;
}

.timer-text strong {
  color: #333;
  font-size: 14px;
}

.countdown {
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #e91e63;
  letter-spacing: 2px;
}

/* Enhanced CTA Benefits */
.cta-benefits {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 12px;
  font-weight: 500;
}

.benefit-item i {
  color: #4caf50;
  background: white;
  border-radius: 50%;
  padding: 2px;
  font-size: 10px;
}

/* Security Guarantees */
.security-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.guarantee-item i {
  color: #28a745;
  font-size: 16px;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
}

.guarantee-text strong {
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.guarantee-text span {
  color: #666;
  font-size: 11px;
}

/* Enhanced Support Section */
.support-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.support-stats .stat {
  text-align: center;
}

.support-stats strong {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 700;
}

.support-stats span {
  color: #666;
  font-size: 12px;
}

.withdrawal-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.balance-display {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.balance-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.balance-icon i {
  font-size: 24px;
  color: white;
}

.balance-display h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.9;
}

.balance-value {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.balance-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.validation-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.validation-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.validation-icon i {
  font-size: 20px;
  color: white;
}

.validation-card h4 {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.validation-card > p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
}

.fee-amount {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border: 2px solid #e9ecef;
}

.fee-label {
  color: #666;
  font-weight: 600;
  font-size: 16px;
}

.fee-value {
  color: #e91e63;
  font-weight: 700;
  font-size: 20px;
}

.validation-benefits {
  margin-bottom: 30px;
}

.validation-benefits h5 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.validation-benefits ul {
  list-style: none;
  padding: 0;
}

.validation-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #555;
  font-size: 14px;
}

.validation-benefits .fas {
  color: #28a745;
  font-size: 12px;
}

.payment-section h5 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.payment-method {
  cursor: pointer;
}

.payment-method input {
  display: none;
}

.method-card {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.payment-method input:checked + .method-card {
  background: linear-gradient(45deg, #e91e63, #ad1457);
  color: white;
  border-color: #e91e63;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.method-card i {
  font-size: 24px;
  margin-bottom: 5px;
}

.method-card span {
  font-weight: 600;
  font-size: 16px;
}

.method-card small {
  font-size: 12px;
  opacity: 0.8;
}

.pay-fee-btn {
  width: 100%;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.pay-fee-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.pay-fee-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.security-note {
  background: #e3f2fd;
  border: 1px solid #bbdefb;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.security-note i {
  color: #1976d2;
  font-size: 16px;
  margin-top: 2px;
}

.security-note p {
  color: #1565c0;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.support-info {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.support-info h5 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.support-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.support-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
}

.support-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

/* Mobile responsive for withdrawal page */
@media (max-width: 768px) {
  .withdrawal-container {
    padding: 15px;
  }

  .withdrawal-header {
    padding: 20px 15px;
  }

  .withdrawal-header h2 {
    font-size: 22px;
  }

  .balance-display {
    padding: 25px 20px;
  }

  .balance-value {
    font-size: 28px;
  }

  .validation-card {
    padding: 25px 20px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .method-card {
    padding: 15px;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-item {
    padding: 15px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .security-guarantees {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-stats {
    flex-direction: column;
    gap: 10px;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .timer-section {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .countdown {
    font-size: 18px;
  }

  .urgency-banner {
    font-size: 13px;
    padding: 10px 15px;
  }
}

/* Mobile responsive for dashboard */
@media (max-width: 768px) {
  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .dashboard-header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .user-info {
    justify-content: center;
  }

  .progress-actions {
    justify-content: center;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
  }
}