:root {
  --primary-red: #E31E24;
  --bg-white: #FFFFFF;
  --text-dark: #101010;
  --text-gray: #666666;
  --neon-glow: rgba(227, 30, 36, 0.5);
}

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

body {
  font-family: 'Big Shoulders Text', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.2;
  overflow-x: hidden;
}

h1, h2, h3, h4, .btn {
  font-family: 'Big Shoulders Text', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fortnite-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111111; /* Even darker for premium feel */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  border-bottom: 2px solid rgba(227, 30, 36, 0.3); /* Subtle glow */
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo img {
  height: 40px;
  width: auto; /* Prevent stretching */
  object-fit: contain;
  filter: brightness(0) invert(1); /* Logo blanc pour plus de visibilité */
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #999999;
  font-family: 'Big Shoulders Text', sans-serif;
  font-weight: 800;
  padding: 28px 20px;
  font-size: 1.15rem;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: var(--primary-red);
  transform: translateX(-50%);
  transition: width 0.3s;
  box-shadow: 0 0 10px var(--primary-red);
}

.nav-links a:hover, .nav-links a.active {
  color: #FFFFFF;
  background: rgba(255,255,255,0.02);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.btn-fortnite-cta {
  background-color: var(--primary-red);
  color: white;
  font-family: 'Big Shoulders Text', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 0; /* Blocky Fortnite style */
  box-shadow: 4px 4px 0px #000;
  transition: all 0.1s;
}

.btn-fortnite-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
  background-color: #ff2a2f;
}

.btn-fortnite-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000;
}

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-image: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45)), url('assets/images/gamergirl.png');
  background-size: cover;
  background-position: center top; /* Positioned at the top to avoid cutting the head */
  background-attachment: fixed;
  text-align: center;
  border-bottom: 8px solid var(--primary-red);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--primary-red);
  transform: skewY(-1.5deg);
  z-index: 1;
}

.hero h1 {
  font-size: 4rem; /* Reduced as requested */
  font-weight: 950;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 1;
  filter: drop-shadow(0 5px 30px rgba(0,0,0,0.8));
  text-transform: uppercase;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 4px; /* Sharp corners like Fortnite */
  text-decoration: none;
  font-weight: 900;
  font-size: 1.4rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-red);
  color: white;
  box-shadow: 0 6px 0px #990000; /* Heavy gaming shadow */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0px #990000;
  background-color: #ff2a2f;
}

.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0px #990000;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item h2 {
  font-size: 3rem;
  color: var(--primary-red);
  font-weight: 900;
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Pricing / Offers */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.price-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 40px rgba(227, 30, 36, 0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-red);
}

.price-card h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

/* ILS NOUS FONT CONFIANCE */
.partners-trust-section {
  margin-top: 100px;
  padding-top: 80px;
}

.partners-title {
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 40px;
  font-size: 1.5rem;
  letter-spacing: 5px;
  font-weight: 900;
  text-align: center;
  font-family: 'Big Shoulders Text', sans-serif;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.partners-white-bar {
  background: #FFFFFF;
  padding: 60px 0; /* Plus de padding pour bien voir la barre */
  width: 100%;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.partners-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px; /* Plus d'espace */
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.partner-item {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  height: 45px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: all 0.3s;
}

.partner-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.price-amount span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.price-features li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

/* Partners */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  align-items: center;
  opacity: 0.6;
  filter: grayscale(1);
  margin-top: 40px;
}

.partners-grid img {
  height: 40px;
}

/* Footer Versus */
.footer-versus {
  background: #111111;
  color: #FFFFFF;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 40px;
  width: auto; /* Prevent stretching */
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 25px;
}

.footer-brand p {
  color: #888888;
  line-height: 1.6;
  font-size: 1rem;
}

.footer-info h4, 
.footer-social h4 {
  font-family: 'Big Shoulders Text', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.footer-info p {
  color: #888888;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-info strong {
  color: var(--primary-red);
}

.social-icons-list {
  display: flex;
  gap: 15px;
}

.social-icons-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icons-list a:hover {
  background: rgba(227,30,36,0.2);
}

.social-icons-list img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1) brightness(1.5);
  transition: transform 0.3s;
}

.social-icons-list a:hover img {
  transform: scale(1.1);
  filter: brightness(1) invert(0); /* On montre les couleurs au survol */
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-bottom p {
  color: #555555;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 25px;
  }
  .social-icons-list {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.download-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: #fdfdfd;
  padding: 60px;
  border-radius: 40px;
  border: 1px solid #eee;
}

.download-info h2 {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.download-card-mini {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  border: 1px solid #eee;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.download-card-mini:hover {
  transform: scale(1.02);
  border-color: var(--primary-red);
  box-shadow: 0 15px 40px rgba(227, 30, 36, 0.1);
}

.download-icon-container {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  border-radius: 15px;
  flex-shrink: 0;
}

.download-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.platform-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.platform-name {
  display: block;
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 900;
  margin-bottom: 15px;
}

.mockups-container-mini {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -60px; /* Moins de chevauchement */
  position: relative;
  padding-left: 30px;
}

.mockup-item-mini {
  width: 260px; /* Encore plus petit comme demandé */
  background: none;
  padding: 0;
  border: none;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  flex-shrink: 0;
}

.mockup-item-mini:first-child {
  z-index: 2;
  transform: translateX(60px);
}

.mockup-item-mini:last-child {
  z-index: 1;
  transform: translateX(-60px);
}

.mockup-item-mini:hover {
  z-index: 5;
  transform: translateY(-20px) scale(1.05);
}

.mockup-item-mini img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.mockup-item-mini:hover {
  transform: scale(1.05) rotate(1deg);
  filter: drop-shadow(0 30px 60px rgba(227, 30, 36, 0.2));
}

.price-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  color: white;
}

.price-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-10px) skew(-1deg);
  background: rgba(255, 255, 255, 0.1);
}

.price-card h4 {
  color: white;
  font-size: 1.8rem;
}

.price-card .price-amount {
  color: var(--primary-red);
}

.price-card.featured {
  background: rgba(227, 30, 36, 0.15);
  border: 2px solid var(--primary-red);
  box-shadow: 0 0 30px rgba(227, 30, 36, 0.2);
}

@media (max-width: 992px) {
  .download-preview-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .download-info h2 {
    text-align: center !important;
  }
  .download-info p {
    margin: 0 auto 40px !important;
  }
  .download-info > div {
    margin: 0 auto;
  }
  .mockups-container-mini {
    flex-wrap: wrap;
  }
}

.organizer-section {
  padding: 120px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('assets/images/naraka.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

/* VP Conversion Badge */
.vp-conversion {
  background: rgba(227, 30, 36, 0.1);
  color: var(--primary-red);
  padding: 10px 25px;
  font-family: 'Big Shoulders Text', sans-serif;
  font-weight: 950;
  font-size: 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--primary-red);
  margin-right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(227, 30, 36, 0.2);
  letter-spacing: 1px;
}

.vp-icon {
  background: var(--primary-red);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 0 10px var(--primary-red);
}

footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}
/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background: #fdfdfd;
}

.testimonial-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 30px 30px 0px rgba(0,0,0,0.04);
  border: 1px solid #eee;
  text-align: left;
}

.testimonial-image {
  flex: 1;
  max-width: 450px;
  height: 500px;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); /* Modern angled shape */
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.testimonial-content-wrapper {
  flex: 1.5;
  padding: 60px 80px 60px 20px;
}

.testimonial-quote {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 800;
  font-family: 'Big Shoulders Text', sans-serif;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 10rem;
  color: var(--primary-red);
  position: absolute;
  top: -50px;
  left: -40px;
  opacity: 0.1;
  font-family: serif;
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.user-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  font-family: 'Big Shoulders Text', sans-serif;
}

.user-role {
  font-size: 1rem;
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Carousel Nav */
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.nav-btn {
  width: 60px;
  height: 60px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-btn:hover {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
  transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #eee;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--primary-red);
  width: 40px;
  border-radius: 10px;
}

/* Responsive Overhaul */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .fortnite-header {
    padding: 0 20px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .download-preview-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px 20px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-logo {
    margin: 0 auto 25px;
  }
  .social-icons-list {
    justify-content: center;
  }
  .vp-conversion {
    display: none; /* Cache la conversion sur tablette/mobile pour gagner de la place */
  }
}

@media (max-width: 768px) {
  .fortnite-header {
    height: auto;
    flex-direction: column;
    padding: 15px 0;
  }
  .header-left {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .nav-links {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 10px 20px;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .header-right {
    margin-top: 10px;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero h1 {
    font-size: 2.5rem !important;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-item h2 {
    font-size: 2.2rem;
  }
  .mockups-container-mini {
    padding-left: 0;
    margin-top: 40px;
  }
  .mockup-item-mini {
    width: 240px !important;
    transform: none !important;
  }
  .mockup-item-mini:first-child {
    transform: translateX(30px) !important;
  }
  .mockup-item-mini:last-child {
    transform: translateX(-30px) !important;
  }
  .organizer-section h2 {
    font-size: 2.2rem !important;
  }
  .partners-track {
    gap: 40px;
    padding: 0 20px;
  }
  .partner-item img {
    height: 35px;
  }
  .testimonial-card {
    flex-direction: column;
  }
  .testimonial-image {
    max-width: 100%;
    height: 300px;
    clip-path: none;
  }
  .testimonial-content-wrapper {
    padding: 30px;
    text-align: center;
  }
  .testimonial-quote {
    font-size: 1.5rem;
  }
  .testimonial-quote::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .carousel-nav {
    display: none;
  }
  .carousel-dots {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem !important;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .partners-track {
    gap: 30px;
  }
  .partners-title {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
  .footer-versus {
    padding: 60px 20px 30px;
  }
}
