/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 75%, #0a0a0a 100%);
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* NAVIGATION */
.navbar {
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(26,26,46,0.9));
  border-bottom: 2px solid rgba(30,144,255,0.3);
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: brightness(1.3) contrast(1.2);
  transform: scale(1.05);
}

.nav-logo h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  background: linear-gradient(45deg, #1e90ff, #87ceeb, #1e90ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 4s ease infinite;
  margin: 0;
  text-shadow: 0 2px 10px rgba(30,144,255,0.3);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  color: #1e90ff;
  background: rgba(30,144,255,0.1);
  text-shadow: 0 0 10px rgba(30,144,255,0.5);
  transform: translateY(-2px);
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: all 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(26,26,46,0.8) 50%, rgba(22,33,62,0.85) 100%),
    url('../images/7352ec0f-4c4f-443d-8d0b-ea6209bd7649.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(30,144,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30,144,255,0.1), transparent);
  animation: heroSweep 8s infinite;
  pointer-events: none;
}

@keyframes heroSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.agency-brand {
  margin-bottom: 2rem;
}

.agency-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.5),
    0 0 20px rgba(30,144,255,0.3);
}

.agency-subtitle {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #1e90ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30,144,255,0.2), rgba(135,206,235,0.2));
  border: 1px solid rgba(30,144,255,0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #87ceeb;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #1e90ff, #0056b3);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(30,144,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(30,144,255,0.4);
  background: linear-gradient(135deg, #0056b3, #003d82);
}

.btn-secondary {
  background: transparent;
  color: #1e90ff;
  border: 2px solid #1e90ff;
}

.btn-secondary:hover {
  background: #1e90ff;
  color: white;
  box-shadow: 0 4px 15px rgba(30,144,255,0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

/* STATS SECTION */
.stats-section {
  padding: 3rem 0;
  background: rgba(0,0,0,0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30,144,255,0.2);
}

.stat-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTIONS */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* TEAM SECTION */
.team-category {
  margin-bottom: 3rem;
}

.category-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.founder-single {
  grid-template-columns: 1fr;
  max-width: 350px;
  margin: 0 auto;
}

.team-member {
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.team-member::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30,144,255,0.2);
}

.member-image {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1e90ff;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.member-info p {
  color: #1e90ff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.member-social .social-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.member-social .social-link:hover {
  color: #87ceeb;
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30,144,255,0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e90ff, #87ceeb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.service-link:hover {
  color: #87ceeb;
  text-shadow: 0 0 10px rgba(135,206,235,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CREATORS SECTION */
.creators {
  padding: 4rem 0;
  background: rgba(0,0,0,0.2);
  overflow: hidden;
}

.creators-showcase {
  margin-top: 2rem;
}

.creators-visual {
  margin-top: 2rem;
  overflow: hidden;
  width: 100%;
}

.creators-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.slider-container {
  display: flex;
  gap: 1rem;
  animation: infiniteScroll 30s linear infinite;
  width: max-content;
}

.creator-slide {
  flex-shrink: 0;
  width: 150px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(30,144,255,0.3);
  transition: all 0.3s ease;
}

.creator-slide:hover {
  border-color: #1e90ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30,144,255,0.3);
}

.creator-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes infiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-150px * 10 - 10rem)); }
}

/* CONTACT FORM */
.join-form {
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 2rem;
  position: relative;
}

.join-form::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  color: #87ceeb;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background: rgba(0,0,0,0.3);
  border: 2px solid rgba(30,144,255,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e90ff;
  box-shadow: 0 0 0 3px rgba(30,144,255,0.2);
  background: rgba(0,0,0,0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* JOIN SECTION */
.join {
  padding: 4rem 0;
}

.join-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.join-info {
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 2rem;
  position: relative;
}

.join-info::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.join-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.join-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  background: linear-gradient(135deg, #1e90ff, #87ceeb);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: 'Orbitron', monospace;
  color: #87ceeb;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-content p {
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.step-content .link {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 600;
}

.step-content .link:hover {
  color: #87ceeb;
  text-decoration: underline;
}

.join-visual {
  text-align: center;
  margin-top: 2rem;
}

.recruitment-guide {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(30,144,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* FAQ SECTION */
.faq-section {
  padding: 4rem 0;
  background: rgba(0,0,0,0.2);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-category {
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 2rem;
  position: relative;
}

.faq-category::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.faq-category h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #1e90ff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  color: white;
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  width: 100%;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #87ceeb;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 1rem 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.faq-answer ul {
  list-style: none;
}

.faq-answer ul li {
  position: relative;
}

.faq-answer ul li::before {
  content: "•";
  position: absolute;
  left: -2rem;
  top: -0.1rem;
  font-weight: 700;
  color: #1e90ff;
  background: rgba(30,144,255,0.1);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.faq-answer li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
  padding-left: 0.5rem;
}

.faq-answer ol {
  counter-reset: custom-counter;
  list-style: none;
}

.faq-answer ol li {
  padding-left: 0.3rem;
  counter-increment: custom-counter;
  position: relative;
}

.faq-answer ol li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: -2rem;
  top: -0.1rem;
  font-weight: 700;
  color: #1e90ff;
  background: rgba(30,144,255,0.1);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* OVERLAYS SECTION */
.overlays {
  padding: 4rem 0;
  background: rgba(0,0,0,0.2);
}

.overlays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.overlay-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.overlay-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.overlay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30,144,255,0.3);
}

.overlay-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 13px;
}

.overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.overlay-card:hover .overlay-image img {
  transform: scale(1.05);
}

.overlay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay-card:hover .overlay-overlay {
  opacity: 1;
}

.overlay-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.overlay-info p {
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.overlay-download {
  background: linear-gradient(135deg, #1e90ff, #87ceeb);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.overlay-download:hover {
  background: linear-gradient(135deg, #87ceeb, #1e90ff);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30,144,255,0.4);
}

/* ABOUT SECTION IMPROVEMENTS */
.about {
  padding: 4rem 0;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.about-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30,144,255,0.3);
}

.about-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.card-header {
  position: relative;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #1e90ff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1e90ff, #87ceeb);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.card-content p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-mission h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #1e90ff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-mission p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-values {
  margin-top: 2rem;
}

.about-values h4 {
  font-family: 'Orbitron', monospace;
  color: #87ceeb;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-values ul {
  list-style: none;
  padding: 0;
}

.about-values li {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.about-values li::before {
  content: '▶';
  color: #1e90ff;
  position: absolute;
  left: 0;
  top: 0;
}

/* JOIN GUIDE */
.join-guide {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(22,33,62,0.95));
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 2rem;
  position: relative;
}

.join-guide::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #1e90ff, #87ceeb);
  border-radius: 17px;
  z-index: -1;
}

.join-guide h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #1e90ff;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.guide-step {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(30,144,255,0.2);
  transition: all 0.3s ease;
}

.guide-step:hover {
  border-color: #1e90ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30,144,255,0.2);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e90ff, #87ceeb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.guide-step h4 {
  font-family: 'Orbitron', monospace;
  color: #87ceeb;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

.guide-step p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(22,33,62,0.95));
  border-top: 2px solid rgba(30,144,255,0.3);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-main h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-main p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(30,144,255,0.2), rgba(135,206,235,0.2));
  border: 1px solid rgba(30,144,255,0.3);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: linear-gradient(135deg, rgba(30,144,255,0.4), rgba(135,206,235,0.4));
  border-color: #1e90ff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright p {
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-size: 0.9rem;
}

.scroll-top {
  background: linear-gradient(135deg, #1e90ff, #87ceeb);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30,144,255,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .join-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content-grid {
    grid-template-columns: 1fr;
  }

  .overlays-grid {
    grid-template-columns: 1fr;
  }

  .creators-slider {
    padding: 0 1rem;
  }

  .creator-slide {
    width: 120px;
    height: 160px;
  }

  .slider-container {
    width: calc(140px * 20);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-social {
    flex-direction: column;
    align-items: center;
  }

  .guide-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .guide-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .creator-slide {
    width: 100px;
    height: 140px;
  }

  .slider-container {
    width: calc(120px * 20);
  }
}

/* ============================================ */
/* SECTION SEO - POURQUOI CHOISIR STREAMUP     */
/* ============================================ */

.why-choose-us {
  padding: 100px 0;
  margin: 60px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(30,144,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose-us .section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-choose-us .section-header p {
  font-size: 1.2rem;
  color: #b8b8b8;
  text-align: center;
  margin-bottom: 3rem;
}

.why-choose-us .content-seo {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 2;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.why-choose-us .content-seo p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  text-align: justify;
  color: #e0e0e0;
  padding: 0 10px;
  line-height: 1.9;
}

.why-choose-us .content-seo strong {
  color: #00d4ff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Responsive pour section SEO */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 20px;
    margin: 40px 0;
  }

  .why-choose-us .section-header h2 {
    font-size: 1.8rem;
  }

  .why-choose-us .section-header p {
    font-size: 1rem;
  }

  .why-choose-us .content-seo p {
    font-size: 1rem;
    text-align: left;
    padding: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 40px 15px;
    margin: 30px 0;
  }

  .why-choose-us .section-header h2 {
    font-size: 1.5rem;
  }

  .why-choose-us .content-seo p {
    font-size: 0.95rem;
  }
}