/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Custom Gradient Background */
.custom-gradient {
    background: linear-gradient(135deg, #313a8a 0%, #16051f 50%, #1b2652 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.custom-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Navigation Bar */
header {
    padding: 25px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.nav-links {
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.nav-links a {
    color: #ec5ba4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.7);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger .line {
    height: 3px;
    width: 100%;
    background-color: #ec5ba4;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    /* Suppression du border-radius et box-shadow */
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    animation: floatX 6s ease-in-out infinite;
    /* Suppression de la transition */
}

/* Animation horizontale */
@keyframes floatX {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ec5ba4;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(236, 91, 164, 0.7);
}

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(45deg, #ec5ba4, #ff1a75);
    color: white;
    box-shadow: 0 5px 15px rgba(236, 91, 164, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 91, 164, 0.6);
}

.btn-secondary {
    border: 2px solid #ec5ba4;
    color: #ec5ba4;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(236, 91, 164, 0.1);
    transform: translateY(-3px);
}




.platform {
    display: inline-block;
    margin: 0 30px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255,255,255,0.7);
    position: relative;
}

.platform::after {
    content: '•';
    position: absolute;
    right: -25px;
    color: #ec5ba4;
}

.platform:last-child::after {
    display: none;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        background: rgba(49, 58, 138, 0.9);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 25px;
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 40px 0;
    }
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        padding: 80px 0;
    }

    .hero-content {
        margin-bottom: 0;
        padding-right: 40px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (min-width: 576px) {
    .btn-group {
        flex-direction: row;
        gap: 20px;
    }
}

/* Why Choose Section - Unifiée avec le hero */
.why-choose {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-choose h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 15px rgba(236, 91, 164, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(37, 0, 53, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(236, 91, 164, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 91, 164, 0.4);
    background: rgba(37, 0, 53, 0.8);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .why-choose h2 {
        font-size: 32px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
}
/* Carousel Section */
.carousel-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.carousel-subtitle {
    color: #dddddd;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.carousel-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    perspective: 1000px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-out;
    will-change: transform;
}

.carousel-card {
    min-width: 220px;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(10deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-card:nth-child(even) {
    transform: rotateY(-10deg);
}

.carousel-card:hover {
    transform: rotateY(0deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(236, 91, 164, 0.3);
    z-index: 10;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.platform-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-card {
        min-width: 200px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .carousel-title {
        font-size: 36px;
    }
    
    .carousel-card {
        min-width: 180px;
        height: 270px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 60px 0;
    }
    
    .carousel-title {
        font-size: 32px;
    }
    
    .carousel-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .carousel-card {
        min-width: 160px;
        height: 240px;
    }
}

@media (max-width: 576px) {
    .carousel-card {
        min-width: 140px;
        height: 210px;
    }
}

/* Platforms Section */
.platforms-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.platforms-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.platforms-text {
    flex: 1;
}

.platforms-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.platforms-text p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.platforms-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.platform-logo {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.platform-logo:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.platform-logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.platform-logo:hover img {
    filter: brightness(1) invert(0);
}

.subscribe-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff4d4d, #f9cb28);
    color: #000;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    border: none;
    cursor: pointer;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.6);
}

.platforms-image {
    flex: 1;
    position: relative;
}

.floating-image {
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .platforms-content {
        flex-direction: column;
        text-align: center;
    }
    
    .platforms-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .platforms-text p {
        max-width: 100%;
    }
    
    .platforms-logos {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .platforms-section {
        padding: 70px 0;
    }
    
    .platforms-text h2 {
        font-size: 36px;
    }
    
    .platform-logo {
        padding: 12px 20px;
    }
    
    .platform-logo img {
        height: 25px;
    }
    
    .subscribe-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .platforms-text h2 {
        font-size: 32px;
    }
    
    .platforms-logos {
        gap: 15px;
    }
    
    .platform-logo {
        padding: 10px 15px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.pricing-section .subtitle {
    text-align: center;
    color: #ddd;
    margin-bottom: 50px;
    font-size: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, #1a0033, #250035);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    transform: scale(1.05);
    background: linear-gradient(145deg, #250035, #3b0066);
    border: 1px solid #ec5ba4;
}

.pricing-card.popular .select-btn {
    background: linear-gradient(45deg, #ec5ba4, #ff1a75);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(236, 91, 164, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ec5ba4;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(236, 91, 164, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.price span {
    font-size: 16px;
    font-weight: normal;
    color: #ddd;
}

.features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.features li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
}

.select-btn {
    display: block;
    text-align: center;
    background: linear-gradient(45deg, #00a8ff, #0062ff);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.select-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section h2 {
        font-size: 30px;
    }
    
    .price {
        font-size: 36px;
    }
}

/* Promo Section */
.iptv-promo {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.promo-image {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  width: 100%;
  max-width: 400px;
  z-index: 3;
  position: relative;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

.abstract-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation: pulse 8s infinite alternate;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 15%;
  animation: pulse 6s infinite alternate-reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 25%;
  animation: pulse 7s infinite;
}

.popcorn {
  position: absolute;
  width: 40px;
  opacity: 0.8;
  animation: float 5s ease-in-out infinite;
}

.popcorn-1 {
  top: 15%;
  right: 20%;
  animation-delay: 0.5s;
}

.popcorn-2 {
  bottom: 20%;
  left: 15%;
  animation-delay: 1s;
}

.promo-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.promo-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(to right, #fff, #ddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  max-width: 500px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  font-size: 24px;
  background: rgba(255,255,255,0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(236,91,164,0.2);
}

.subscribe-btn {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  text-decoration: none;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 220px;
}

.subscribe-btn span {
  display: block;
  position: relative;
  z-index: 2;
  padding: 16px 35px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.btn-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff4d4d, #f9cb28, #ff4d4d);
  background-size: 200% 100%;
  z-index: 1;
  transition: all 0.5s ease;
}

.subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 77, 77, 0.4);
}

.subscribe-btn:hover .btn-gradient {
  background-position: 100% 0;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .promo-content {
    flex-direction: column;
    text-align: center;
  }
  
  .promo-image {
    min-height: 400px;
  }
  
  .promo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .description {
    max-width: 100%;
  }
  
  .features {
    align-items: center;
  }
  
  .subscribe-btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .iptv-promo {
    padding: 70px 0;
  }
  
  .promo-text h1 {
    font-size: 36px;
  }
  
  .main-image {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .promo-text h1 {
    font-size: 32px;
  }
  
  .description {
    font-size: 16px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .subscribe-btn span {
    padding: 14px 30px;
    font-size: 16px;
  }
}
/* Simple Promo Section */
.iptv-promo-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a1a, #1a0033);
    color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .promo-content-simple {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .promo-image-simple {
    flex: 1;
    text-align: center;
  }
  
  .tv-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  
  .tv-image:hover {
    transform: scale(1.02);
  }
  
  .promo-text-simple {
    flex: 1;
  }
  
  .promo-text-simple h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
  }
  
  .features-simple {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
  }
  
  .feature-item-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
  }
  
  .check-icon {
    color: #00ff88;
    font-weight: bold;
    font-size: 20px;
  }
  
  .subscribe-btn-simple {
    display: inline-block;
    background: linear-gradient(to right, #ff4d4d, #f9cb28);
    color: #000;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
  }
  
  .subscribe-btn-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.4);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .promo-content-simple {
      flex-direction: column;
      text-align: center;
    }
    
    .features-simple {
      align-items: center;
    }
    
    .feature-item-simple {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .iptv-promo-simple {
      padding: 60px 0;
    }
    
    .promo-text-simple h1 {
      font-size: 32px;
    }
    
    .description {
      font-size: 16px;
    }
    
    .subscribe-btn-simple {
      padding: 13px 30px;
      font-size: 16px;
    }
  }

  /* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #0f0f1f;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(236,91,164,0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0033, #250035);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: rgba(236,91,164,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.submit-btn {
    background: linear-gradient(to right, #ff4d4d, #f9cb28);
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.4);
}

/* Footer */
.main-footer {
    background: #0a0a1a;
    padding: 70px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ec5ba4;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ec5ba4;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px 0 0 8px;
    color: #fff;
}

.newsletter-form button {
    width: 50px;
    background: #ec5ba4;
    border: none;
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff1a75;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods i {
    font-size: 24px;
    margin-left: 15px;
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .faq-section h2,
    .contact-info h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .footer-col {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 8px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        margin-top: 15px;
    }
}

