* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
:root {
  --blue: #1a73e8;
  --blue-dark: #0d47a1;
  --orange: #ff6b35;
  --orange-dark: #e55a2b;
  --dark: #0a0e1a;
  --darker: #060912;
  --card: #111827;
  --card-hover: #1a2332;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --border: #1f2937;
}
body { background: var(--darker); color: var(--text); overflow-x: hidden; }

/* Header */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,9,18,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 15px 5%;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 45px; height: 45px; border-radius: 8px; }
.logo-text { font-size: 24px; font-weight: 800; }
.logo-text .zik { color: var(--blue); }
.logo-text .num { color: white; }
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 2px; }

nav ul { display: flex; gap: 30px; list-style: none; }
nav a {
  color: var(--text-muted); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.3s; position: relative;
}
nav a:hover { color: var(--orange); }
nav a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0;
  height: 2px; background: var(--orange); transition: width 0.3s;
}
nav a:hover::after { width: 100%; }

.auth-buttons { display: flex; gap: 12px; }
.btn {
  padding: 10px 22px; border: none; border-radius: 8px; cursor: pointer;
  font-weight: 600; font-size: 14px; transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-outline {
  background: transparent; border: 2px solid var(--blue); color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: white; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,53,0.4); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,115,232,0.4); }

.menu-toggle { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 5% 60px;
  background: radial-gradient(ellipse at top, rgba(26,115,232,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom, rgba(255,107,53,0.1) 0%, transparent 50%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 600px; height: 600px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.1); } }

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-logo { width: 180px; margin-bottom: 30px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero h1 { font-size: 56px; font-weight: 800; margin-bottom: 15px; }
.hero h1 .zik { color: var(--blue); }
.hero h1 .num { color: white; }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 35px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero .btn { padding: 14px 32px; font-size: 15px; }

/* Sections */
section { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 38px; font-weight: 800; margin-bottom: 10px; }
.section-header h2 span { color: var(--orange); }
.section-header p { color: var(--text-muted); font-size: 16px; }

/* Search */
#recherche { background: var(--dark); }
.search-container {
  max-width: 700px; margin: 0 auto;
  background: var(--card); border-radius: 20px; padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.search-box { display: flex; gap: 12px; }
.search-box input {
  flex: 1; padding: 16px 20px; border-radius: 12px;
  border: 2px solid var(--border); background: var(--darker);
  color: white; font-size: 15px; outline: none; transition: border 0.3s;
}
.search-box input:focus { border-color: var(--blue); }
.search-box .btn { padding: 16px 28px; }
.search-filters { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.filter-tag {
  padding: 8px 16px; border-radius: 20px; background: var(--darker);
  border: 1px solid var(--border); color: var(--text-muted);
  font-size: 13px; cursor: pointer; transition: all 0.3s;
}
.filter-tag:hover, .filter-tag.active { background: var(--blue); color: white; border-color: var(--blue); }

/* Downloads */
.downloads-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px; max-width: 1200px; margin: 0 auto;
}
.download-card {
  background: var(--card); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s;
  cursor: pointer;
}
.download-card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: 0 15px 40px rgba(255,107,53,0.2); }
.card-cover {
  height: 200px;
  overflow: hidden;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-cover .play-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.download-card:hover .play-overlay { opacity: 1; }
.play-btn-icon {
  width: 60px; height: 60px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white;
}
.card-info { padding: 18px; }
.card-info h4 { font-size: 16px; margin-bottom: 5px; color: white; }
.card-info .artist { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }
.card-meta { display: flex; justify-content: space-between; align-items: center; }
.card-type {
  padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 600;
}
.type-music { background: rgba(26,115,232,0.2); color: var(--blue); }
.type-video { background: rgba(255,107,53,0.2); color: var(--orange); }
.card-size { color: var(--text-muted); font-size: 12px; }

/* Subscription */
#abonnement { background: var(--dark); }
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px; max-width: 1000px; margin: 0 auto;
}
.plan-card {
  background: var(--card); border-radius: 20px; padding: 35px 30px;
  border: 1px solid var(--border); text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.plan-card.featured { border-color: var(--orange); transform: scale(1.05); }
.plan-card.featured::before {
  content: 'POPULAIRE'; position: absolute; top: 20px; right: -30px;
  background: var(--orange); color: white; padding: 5px 40px;
  font-size: 11px; font-weight: 700; transform: rotate(45deg);
}
.plan-card:hover { transform: translateY(-5px); }
.plan-card.featured:hover { transform: scale(1.05) translateY(-5px); }
.plan-icon { font-size: 40px; margin-bottom: 15px; }
.plan-name { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.plan-price { font-size: 42px; font-weight: 800; margin-bottom: 5px; }
.plan-price .currency { font-size: 20px; color: var(--text-muted); }
.plan-period { color: var(--text-muted); font-size: 14px; margin-bottom: 25px; }
.plan-features { list-style: none; margin-bottom: 25px; text-align: left; }
.plan-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.plan-features li::before { content: '✓'; color: var(--orange); font-weight: 700; }
.plan-card .btn { width: 100%; padding: 14px; }

/* Support */
.support-container {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.support-info { display: flex; flex-direction: column; gap: 25px; }
.support-item {
  background: var(--card); padding: 25px; border-radius: 16px;
  border: 1px solid var(--border); display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.3s;
}
.support-item:hover { border-color: var(--blue); }
.support-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.support-item h4 { margin-bottom: 5px; font-size: 16px; }
.support-item p { color: var(--text-muted); font-size: 14px; }
.support-item a { color: var(--orange); text-decoration: none; }
.support-form {
  background: var(--card); padding: 30px; border-radius: 20px;
  border: 1px solid var(--border);
}
.support-form h3 { margin-bottom: 20px; font-size: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 13px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 15px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--darker);
  color: white; font-size: 14px; outline: none; transition: border 0.3s;
  font-family: 'Poppins', sans-serif;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Footer */
footer {
  background: var(--darker); padding: 60px 5% 20px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 15px 0; line-height: 1.6; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--card); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; transition: all 0.3s;
}
.social-links a:hover { background: var(--orange); color: white; }
.footer-col h4 { margin-bottom: 18px; font-size: 15px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center; padding-top: 25px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 13px;
}

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px); z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.3s;
}
.modal-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--card); border-radius: 20px; padding: 40px;
  max-width: 450px; width: 100%; border: 1px solid var(--border);
  position: relative; animation: slideUp 0.4s;
  max-height: 90vh; overflow-y: auto;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 15px; right: 15px;
  width: 35px; height: 35px; border-radius: 50%;
  background: var(--darker); border: none; color: white;
  font-size: 18px; cursor: pointer; transition: all 0.3s;
}
.modal-close:hover { background: var(--orange); }
.modal h2 { font-size: 26px; margin-bottom: 8px; }
.modal .subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 25px; }
.modal .form-group { margin-bottom: 16px; }
.modal .btn { width: 100%; padding: 14px; margin-top: 10px; }
.modal-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-muted); }
.modal-footer a { color: var(--orange); cursor: pointer; text-decoration: none; }

/* OTP Modal */
.otp-container { text-align: center; }
.otp-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 40px;
}
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
.otp-inputs input {
  width: 50px; height: 55px; text-align: center;
  border-radius: 10px; border: 2px solid var(--border);
  background: var(--darker); color: white; font-size: 22px;
  font-weight: 700; outline: none; transition: border 0.3s;
}
.otp-inputs input:focus { border-color: var(--orange); }
.otp-timer { color: var(--text-muted); font-size: 13px; margin: 10px 0; }
.otp-timer span { color: var(--orange); font-weight: 600; }
.resend-link { color: var(--blue); cursor: pointer; font-size: 13px; }

/* Search Results Modal */
.search-results { max-width: 600px; }
.result-item {
  display: flex; gap: 15px; padding: 15px;
  background: var(--darker); border-radius: 12px;
  margin-bottom: 12px; align-items: center;
  border: 1px solid var(--border); transition: all 0.3s;
}
.result-item:hover { border-color: var(--blue); }
.result-cover {
  width: 60px; height: 60px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.result-info { flex: 1; }
.result-info h4 { font-size: 15px; margin-bottom: 3px; }
.result-info p { font-size: 12px; color: var(--text-muted); }
.result-download {
  padding: 8px 16px; background: var(--orange); color: white;
  border: none; border-radius: 8px; cursor: pointer; font-size: 13px;
  font-weight: 600; transition: all 0.3s;
}
.result-download:hover { background: var(--orange-dark); }

/* Toast */
.toast {
  position: fixed; top: 90px; right: 20px; z-index: 20000;
  background: var(--card); padding: 15px 25px; border-radius: 12px;
  border-left: 4px solid var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateX(400px); transition: transform 0.4s;
  display: flex; align-items: center; gap: 12px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-left-color: #25D366; }
.toast.error { border-left-color: #ef4444; }

/* Responsive */
@media (max-width: 900px) {
  nav ul { display: none; }
  .menu-toggle { display: block; }
  nav ul.active {
    display: flex; flex-direction: column;
    position: absolute; top: 75px; left: 0; right: 0;
    background: var(--darker); padding: 20px; gap: 15px;
    border-bottom: 1px solid var(--border);
  }
  .hero h1 { font-size: 36px; }
  .support-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-5px); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .auth-buttons .btn { padding: 8px 14px; font-size: 12px; }
  .search-box { flex-direction: column; }
  .section-header h2 { font-size: 28px; }
  .modal { padding: 25px; }
}










.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}

.progress-modal {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 40px 35px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}

.progress-modal-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.progress-modal h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.progress-subtitle {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 25px;
}

.progress-bar-wrapper {
  background: #0a0e1a;
  border-radius: 10px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1a73e8, #ff6b35);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9ca3af;
}

.progress-info #progressPercent {
  color: #ff6b35;
  font-weight: 700;
}









.password-container{
    position:relative;
}

#regPassword{
    width:100%;
    padding-right:45px;
}

#togglePassword1{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#777;
}

#togglePassword2{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#777;
}

#togglePassword3{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#777;
}









/* Bouton de partage */
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,115,232,0.4);
}
.btn-share span {
  font-size: 16px;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Share Modal */
.share-modal {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 24px;
  padding: 35px 30px;
  max-width: 450px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.share-icon-header {
  font-size: 52px;
  text-align: center;
  margin-bottom: 15px;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.share-modal h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.share-subtitle {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 28px;
}

/* Share Buttons Grid */
.share-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.share-btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
}

/* Facebook */
.share-btn.facebook {
  background: rgba(24,119,242,0.1);
  border-color: rgba(24,119,242,0.3);
  color: #1877f2;
}
.share-btn.facebook:hover {
  background: #1877f2;
  color: white;
  box-shadow: 0 8px 20px rgba(24,119,242,0.4);
}
.share-btn.facebook .share-btn-icon {
  background: rgba(24,119,242,0.15);
}
.share-btn.facebook:hover .share-btn-icon {
  background: rgba(255,255,255,0.2);
}

/* WhatsApp */
.share-btn.whatsapp {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.3);
  color: #25d366;
}
.share-btn.whatsapp:hover {
  background: #25d366;
  color: white;
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
.share-btn.whatsapp .share-btn-icon {
  background: rgba(37,211,102,0.15);
}
.share-btn.whatsapp:hover .share-btn-icon {
  background: rgba(255,255,255,0.2);
}

/* LinkedIn */
.share-btn.linkedin {
  background: rgba(10,102,194,0.1);
  border-color: rgba(10,102,194,0.3);
  color: #0a66c2;
}
.share-btn.linkedin:hover {
  background: #0a66c2;
  color: white;
  box-shadow: 0 8px 20px rgba(10,102,194,0.4);
}
.share-btn.linkedin .share-btn-icon {
  background: rgba(10,102,194,0.15);
}
.share-btn.linkedin:hover .share-btn-icon {
  background: rgba(255,255,255,0.2);
}

/* Twitter */
.share-btn.twitter {
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.2);
  color: #e5e7eb;
}
.share-btn.twitter:hover {
  background: #000000;
  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.share-btn.twitter .share-btn-icon {
  background: rgba(255,255,255,0.1);
}
.share-btn.twitter:hover .share-btn-icon {
  background: rgba(255,255,255,0.2);
}

/* Share Link Section */
.share-link-section {
  border-top: 1px solid #1f2937;
  padding-top: 24px;
}
.share-link-section p {
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 12px;
}

.share-link-input {
  display: flex;
  gap: 10px;
}

.share-link-input input {
  flex: 1;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 12px 16px;
  color: #e5e7eb;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.share-link-input input:focus {
  border-color: #1a73e8;
}

.copy-link-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.copy-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255,107,53,0.4);
}

/* Responsive */
@media (max-width: 480px) {
  .share-modal {
    padding: 28px 22px;
  }
  .share-buttons-grid {
    grid-template-columns: 1fr;
  }
  .share-btn {
    padding: 16px 20px;
  }
}











/* Bouton Commissions */
.btn-commissions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-commissions:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}
.btn-commissions span {
  font-size: 16px;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Commissions Modal */
.commissions-modal {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 24px;
  padding: 30px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.commissions-modal::-webkit-scrollbar {
  width: 6px;
}
.commissions-modal::-webkit-scrollbar-track {
  background: #0a0e1a;
}
.commissions-modal::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 3px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal-close:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* Header */
.commissions-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.commissions-icon {
  font-size: 42px;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.commissions-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.commissions-subtitle {
  color: #9ca3af;
  font-size: 13px;
}

/* Referral Code Section */
.referral-code-section {
  background: #0a0e1a;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
}

.referral-code-section > p {
  color: #9ca3af;
  font-size: 12px;
  margin-bottom: 10px;
}

.referral-code-box {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.referral-code-box code {
  flex: 1;
  background: #111827;
  border: 1px dashed #ff6b35;
  border-radius: 8px;
  padding: 12px 16px;
  color: #ff6b35;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

.copy-code-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.copy-code-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26,115,232,0.4);
}

.referral-link {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
}
.referral-link span {
  color: #1a73e8;
  word-break: break-all;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.stat-card {
  background: #0a0e1a;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.3s;
}
.stat-card:hover {
  border-color: #1a73e8;
  transform: translateY(-3px);
}

.stat-card.highlight {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(229,90,43,0.05));
  border-color: rgba(255,107,53,0.3);
}

.stat-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.stat-card.highlight .stat-value {
  color: #ff6b35;
}

.stat-label {
  font-size: 11px;
  color: #9ca3af;
}

/* Commissions List */
.commissions-list-section {
  margin-bottom: 24px;
}

.commissions-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.commissions-list-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
}

.commissions-count {
  font-size: 12px;
  color: #9ca3af;
  background: #0a0e1a;
  padding: 4px 10px;
  border-radius: 12px;
}

.commissions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 5px;
}

.commissions-list::-webkit-scrollbar {
  width: 4px;
}
.commissions-list::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 2px;
}

.commission-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.3s;
}
.commission-item:hover {
  border-color: #1a73e8;
}

.commission-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.commission-info {
  flex: 1;
  min-width: 0;
}

.commission-name {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.commission-date {
  font-size: 11px;
  color: #6b7280;
}

.commission-amount {
  font-size: 14px;
  font-weight: 700;
  color: #25d366;
  white-space: nowrap;
}

.commission-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  margin-top: 4px;
}

.status-paid {
  background: rgba(37,211,102,0.15);
  color: #25d366;
}

.status-pending {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
}

/* Withdraw Button */
.withdraw-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.withdraw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

/* Responsive */
@media (max-width: 480px) {
  .commissions-modal {
    padding: 24px 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
  .stat-icon {
    margin-bottom: 0;
  }
  .stat-value {
    font-size: 16px;
  }
}












/* Bouton Paiement */
.btn-payment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-payment:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}
.btn-payment span {
  font-size: 18px;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Payment Modal */
.payment-modal {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 24px;
  padding: 35px 30px;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal-close:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* Steps Indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a0e1a;
  border: 2px solid #1f2937;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.4s;
}
.step-dot.active {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  border-color: #ff6b35;
  color: white;
  box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}
.step-dot.done {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

.step-line {
  width: 60px;
  height: 3px;
  background: #1f2937;
  margin: 0 12px;
  border-radius: 2px;
  transition: background 0.4s;
}
.step-line.active {
  background: linear-gradient(90deg, #ff6b35, #25d366);
}

/* Payment Steps */
.payment-step {
  animation: stepFadeIn 0.4s ease;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.payment-icon-header {
  font-size: 48px;
  text-align: center;
  margin-bottom: 12px;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.confirm-icon {
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.payment-modal h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 6px;
}

.payment-subtitle {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 24px;
}
.payment-subtitle strong {
  color: #ff6b35;
}

/* Amount Display */
.amount-display {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(26,115,232,0.08));
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}
.amount-display > p {
  color: #9ca3af;
  font-size: 12px;
  margin-bottom: 6px;
}
.amount-value {
  font-size: 36px;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 4px;
}
.amount-period {
  color: #6b7280;
  font-size: 12px;
  margin: 0;
}

/* Operator Section */
.operator-section {
  margin-bottom: 20px;
}
.section-label {
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 500;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.operator-card {
  background: #0a0e1a;
  border: 2px solid #1f2937;
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.operator-card:hover {
  border-color: #1a73e8;
  transform: translateY(-2px);
}
.operator-card.selected {
  border-color: #ff6b35;
  background: rgba(255,107,53,0.08);
}
.operator-card span {
  font-size: 11px;
  font-weight: 600;
  color: #e5e7eb;
}

.operator-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
}
.mpesa-logo { background: linear-gradient(135deg, #00a651, #007a3d); }
.airtel-logo { background: linear-gradient(135deg, #ed1c24, #b71c1c); }
.orange-logo { background: linear-gradient(135deg, #ff7900, #e56600); }

/* Phone Section */
.phone-section {
  margin-bottom: 24px;
}
.phone-input-wrapper {
  display: flex;
  background: #0a0e1a;
  border: 2px solid #1f2937;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.phone-input-wrapper:focus-within {
  border-color: #1a73e8;
}
.phone-prefix {
  padding: 14px 16px;
  background: #111827;
  color: #9ca3af;
  font-weight: 600;
  font-size: 14px;
  border-right: 1px solid #1f2937;
  display: flex;
  align-items: center;
}
.phone-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  outline: none;
  letter-spacing: 1px;
}
.phone-input-wrapper input::placeholder {
  color: #4b5563;
  font-weight: 400;
}
.phone-hint {
  color: #6b7280;
  font-size: 11px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Buttons */
.btn-next {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

/* Recap Card */
.recap-card {
  background: #0a0e1a;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}
.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.recap-row.highlight {
  padding-top: 8px;
}
.recap-label {
  color: #9ca3af;
  font-size: 13px;
}
.recap-value {
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 600;
}
.recap-value.amount {
  color: #ff6b35;
  font-size: 18px;
  font-weight: 800;
}
.recap-divider {
  height: 1px;
  background: #1f2937;
  margin: 10px 0;
}

/* Warning Box */
.warning-box {
  background: rgba(245,158,11,0.08);
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.warning-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.warning-box p {
  color: #fbbf24;
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

/* Payment Actions */
.payment-actions {
  display: flex;
  gap: 12px;
}
.btn-back {
  flex: 1;
  padding: 14px;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  color: #9ca3af;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-back:hover {
  background: #111827;
  color: #e5e7eb;
  border-color: #1a73e8;
}

.btn-confirm {
  flex: 2;
  padding: 14px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

/* Success Step */
.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: successPop 0.5s ease;
}
@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-details {
  background: #0a0e1a;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
}
.success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: #9ca3af;
}
.success-row strong {
  color: #e5e7eb;
  font-size: 14px;
}

.btn-done {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-done:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,115,232,0.4);
}

/* Responsive */
@media (max-width: 480px) {
  .payment-modal {
    padding: 28px 22px;
  }
  .amount-value {
    font-size: 30px;
  }
  .operator-grid {
    grid-template-columns: 1fr;
  }
  .operator-card {
    flex-direction: row;
    padding: 12px 16px;
  }
  .payment-actions {
    flex-direction: column;
  }
}










/* Download App Section */
.download-app-section {
  padding: 80px 5%;
  background: radial-gradient(ellipse at top, rgba(26,115,232,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(255,107,53,0.08) 0%, transparent 50%);
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
}

.download-app-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-app-content {
  max-width: 520px;
}

.download-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 20px;
  color: #ff6b35;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.download-app-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 15px;
  line-height: 1.2;
}

.download-app-content h2 span {
  color: #ff6b35;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-app-content p {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #1f2937;
  background: #111827;
  min-width: 200px;
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.store-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.store-small {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 400;
  line-height: 1.2;
}

.store-name {
  font-size: 17px;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1.2;
}

/* Google Play Button */
.store-btn.google-play {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.store-btn.google-play:hover {
  border-color: #00d084;
  box-shadow: 0 12px 30px rgba(0,208,132,0.2);
}
.store-btn.google-play .store-icon {
  color: #00d084;
}

/* App Store Button */
.store-btn.app-store {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.store-btn.app-store:hover {
  border-color: #0071e3;
  box-shadow: 0 12px 30px rgba(0,113,227,0.2);
}
.store-btn.app-store .store-icon {
  color: #0071e3;
}

/* Download Stats */
.download-stats {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid #1f2937;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: #e5e7eb;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: #1f2937;
}

/* Phone Mockup */
.download-app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: #0a0e1a;
  border-radius: 40px;
  padding: 12px;
  border: 2px solid #1f2937;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5),
              0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d47a1, #1a73e8, #ff6b35);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #0a0e1a;
  border-radius: 0 0 15px 15px;
}

.phone-content {
  text-align: center;
  z-index: 2;
}

.phone-logo {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.phone-logo .zik {
  color: white;
}

.phone-logo .num {
  color: #ff6b35;
}

.phone-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.phone-music-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  justify-content: center;
}

.phone-music-bars .bar {
  width: 8px;
  background: white;
  border-radius: 4px;
  animation: musicBar 1s ease-in-out infinite;
}

.phone-music-bars .bar:nth-child(1) { animation-delay: 0s; }
.phone-music-bars .bar:nth-child(2) { animation-delay: 0.2s; }
.phone-music-bars .bar:nth-child(3) { animation-delay: 0.4s; }
.phone-music-bars .bar:nth-child(4) { animation-delay: 0.6s; }
.phone-music-bars .bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes musicBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

/* Responsive */
@media (max-width: 900px) {
  .download-app-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .download-app-content {
    max-width: 100%;
  }
  .store-buttons {
    justify-content: center;
  }
  .download-stats {
    justify-content: center;
  }
  .download-app-visual {
    order: -1;
  }
  .phone-mockup {
    width: 220px;
    height: 440px;
  }
}

@media (max-width: 480px) {
  .download-app-content h2 {
    font-size: 28px;
  }
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  .store-btn {
    width: 100%;
    max-width: 280px;
  }
  .download-stats {
    flex-direction: column;
    gap: 15px;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
}










/* Card Cover avec overlay */
.card-cover {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0e1a;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card-cover:hover img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-cover:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 70px;
  height: 70px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.play-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6);
}

.play-icon svg {
  margin-left: 4px;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Video Modal */
.video-modal {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s ease;
  overflow: hidden;
}

@keyframes slideUp {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video Info */
.video-info {
  padding: 20px 25px;
  border-top: 1px solid #1f2937;
}

.video-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 5px;
}

.video-info p {
  font-size: 13px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .video-modal {
    border-radius: 16px;
  }
  .video-info h3 {
    font-size: 16px;
  }
}




















.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.withdraw-modal {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 35px 30px;
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0a0e1a;
  border: 1px solid #1f2937;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s;
}
.modal-close:hover {
  background: #ef4444;
  color: white;
}

.withdraw-step { text-align: center; }

.withdraw-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.withdraw-modal h2 {
  font-size: 22px;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.withdraw-balance {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 25px;
}
.withdraw-balance strong {
  color: #ff6b35;
  font-size: 20px;
  font-weight: 800;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}
.input-group label {
  display: block;
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 8px;
}

.phone-input {
  display: flex;
  background: #0a0e1a;
  border: 2px solid #1f2937;
  border-radius: 10px;
  overflow: hidden;
}
.phone-input span {
  padding: 14px 16px;
  background: #111827;
  color: #9ca3af;
  font-weight: 600;
  border-right: 1px solid #1f2937;
}
.phone-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

.btn-confirm {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

.result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  font-weight: 700;
  animation: pop 0.5s ease;
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.result-icon.success {
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
}
.result-icon.failed {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

#resultMessage {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 25px;
}

.btn-done {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-done:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,115,232,0.4);
}
















/* CSS CORRIGÉ AVEC Z-INDEX ÉLEVÉ */
.btn-stars-trigger {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: white; border: none; padding: 12px 24px; border-radius: 10px;
  font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: transform 0.2s;
}
.btn-stars-trigger:hover { transform: translateY(-2px); }

.modal-overlay {
  position: fixed; inset: 0; 
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 9999 !important; /* Force le passage au-dessus de tout */
  display: none; /* Caché par défaut */
  align-items: center; justify-content: center; 
  padding: 20px;
}
.modal-overlay.active { display: flex !important; } /* Flex pour centrer */

.stars-popup-container {
  background: #111827; border: 1px solid #1f2937;
  border-radius: 20px; width: 100%; max-width: 800px;
  max-height: 90vh; overflow-y: auto; position: relative; padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.mini-popup {
  background: #111827; border: 1px solid #1f2937;
  border-radius: 20px; width: 100%; max-width: 450px; padding: 30px; position: relative;
}
.modal-close {
  position: absolute; top: 15px; right: 15px; background: transparent;
  border: none; color: #e5e7eb; font-size: 20px; cursor: pointer; z-index: 10;
}
.popup-header h2 { margin-bottom: 20px; color: #e5e7eb; }
.search-bar { display: flex; gap: 10px; margin-bottom: 20px; }
.search-bar input {
  flex: 1; padding: 12px; border-radius: 8px; border: 1px solid #1f2937;
  background: #0a0e1a; color: white; outline: none;
}
.stars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }
.star-item {
  background: #0a0e1a; border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform 0.2s;
  border: 1px solid #1f2937;
}
.star-item:hover { transform: translateY(-5px); border-color: #ff6b35; }
.star-item img { width: 100%; height: 150px; object-fit: cover; }
.star-item p { padding: 10px; font-weight: 600; text-align: center; color: #e5e7eb; margin: 0; }

/* Profil Styles */
.profile-cover { height: 150px; background: linear-gradient(to right, #1a73e8, #ff6b35); border-radius: 12px; margin-bottom: -40px; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; border: 4px solid #111827; object-fit: cover; margin-left: 20px; position: relative; z-index: 2; }
.profile-content { padding: 0 20px 20px; color: #e5e7eb; }
.profile-actions { display: flex; gap: 10px; margin: 20px 0; }
.btn-action { padding: 10px 20px; border-radius: 8px; border: none; font-weight: 600; cursor: pointer; }
.btn-action.primary { background: #ff6b35; color: white; }
.btn-action.secondary { background: #0a0e1a; color: white; border: 1px solid #1f2937; }
.video-wrapper { aspect-ratio: 16/9; background: black; border-radius: 12px; overflow: hidden; margin-top: 10px; }
.video-wrapper iframe { width: 100%; height: 100%; }
.content-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-top: 15px; }
.content-item { background: #0a0e1a; padding: 10px; border-radius: 8px; font-size: 12px; color: #e5e7eb; border: 1px solid #1f2937; }
.locked { opacity: 0.5; pointer-events: none; position: relative; }
.locked::after { content: '🔒 >10min'; position: absolute; top: 5px; right: 5px; font-size: 10px; color: #ff6b35; }

/* Formulaires & Plans */
.form-input { width: 100%; padding: 12px; border-radius: 8px; border: 1px solid #1f2937; background: #0a0e1a; color: white; margin-top: 5px; box-sizing: border-box; }
.plans-selector { display: flex; gap: 10px; margin: 20px 0; }
.plan-card { flex: 1; background: #0a0e1a; padding: 15px; border-radius: 10px; border: 1px solid #1f2937; cursor: pointer; text-align: center; }
.plan-card.selected { border-color: #ff6b35; background: rgba(255,107,53,0.1); }
.plan-price { font-size: 18px; font-weight: 800; color: #ff6b35; margin: 5px 0; }
.plan-card ul { list-style: none; font-size: 11px; color: #9ca3af; text-align: left; padding-left: 0; margin: 0; }
.price-tag { text-align: center; font-size: 20px; font-weight: 800; color: #ff6b35; margin: 15px 0; }
.refund-notice { background: rgba(26,115,232,0.1); border-left: 3px solid #1a73e8; padding: 10px; font-size: 11px; color: #93c5fd; margin-bottom: 15px; }
.btn-confirm { width: 100%; padding: 14px; background: #1a73e8; color: white; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; }











/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9999 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex !important;
}

/* Loading Popup */
.loading-popup {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 40px 35px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.loading-title {
  font-size: 22px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.loading-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 25px;
}

/* Barre de progression arrondie avec animation infinie */
.progress-container {
  width: 100%;
  height: 10px;
  background: #0a0e1a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar-animated {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, #1a73e8, #ff6b35);
  border-radius: 10px;
  animation: progressMove 1.5s ease-in-out infinite;
}

@keyframes progressMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}













