        :root {
            --primary-color: #651fff;
            --primary-dark: #4a1ab3;
            --primary-light: #7f4bff;
            --text-color: #ffffff;
            --text-light: #cccccc;
            --text-on-primary: #fff;
            --background: #121212;
            --background-dark: #000000;			
            --surface: #000000;
            --surfacetabs: #15161d;
            --surfacefaq: #242631;			
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
            --netflix-red: #e50914;
            --netflix-dark-red: #b00710;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--background-dark);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            background-color: var(--surface);
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 100;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .header__logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            margin-right: 5px;
            object-fit: contain;
        }

        .header__title h1 {
            font-size: 1.8rem;
            font-weight: 700;
          /*  color: var(--primary-color); */
			background: -webkit-linear-gradient(var(--text-color), var(--primary-color));
	       -webkit-background-clip: text;
	       -webkit-text-fill-color: transparent;			
          /*  text-transform: lowercase; */
            line-height: 1;
        }

        .slogan {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 400;
            margin-top: 0.2rem;
        }

        .header__stats {
            text-align: right;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
           /* color: var(--primary-color); */
            line-height: 1;
	       background: -webkit-linear-gradient(left, var(--primary-color), var(--primary-light), var(--primary-light), var(--text-color));
	       -webkit-background-clip: text;
	       -webkit-text-fill-color: transparent;			
			
        }

        .stat-text {
            font-size: 0.9rem;
            /*color: var(--text-light); */
	       background: -webkit-linear-gradient(left, var(--text-color), var(--primary-light), var(--primary-light), var(--primary-color));
	       -webkit-background-clip: text;
	       -webkit-text-fill-color: transparent;			
			
        }

        .tabs {
            background-color: var(--surfacetabs);
            box-shadow: var(--box-shadow);
            position: sticky;
            top: 0;
            z-index: 90;
        }

        .tabs__list {
            display: flex;
            list-style: none;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tabs__item {
            flex: 1;
            text-align: center;
            transition: var(--transition);
        }

        .tabs__item a {
            display: block;
            padding: 1rem 0;
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        .tabs__item.active a {
            color: var(--primary-color);
            font-weight: 600;
        }

        .tabs__item a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .tabs__item.active a::after {
            width: 100%;
        }

        .tabs__item:not(.active):hover a {
            color: var(--primary-light);
        }

        .main-content {
            flex: 1;
            margin: 0 auto;
            width: 100%;
          /*  max-width: 1200px; */
        }
      
        #tutoriales, #peliculas {
            flex: 1;
            margin: 0 auto;
            width: 100%;
            max-width: 1200px;
            padding: 2rem 1rem;
        } 

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
            position: relative;
        }

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

        .hero-container {
            border-radius: var(--border-radius);
            padding: 0.5rem;
            position: relative;
            overflow: hidden;
            min-height: 300px;
        }

        .hero-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)), 
                        url('https://suisse-iptv.net/wp-content/uploads/2025/02/CAROSEL-LOGO-1024x576.jpg');
            background-size: cover;
            filter: blur(2px);
            opacity: 0.3;
            z-index: -1;
        }

        .floating-title-3 {
           /* color: var(--primary-color); */
            font-size: 2.5rem;
            margin: 1rem 0.5rem 0 0.5rem;
         /*   animation: float 3s ease-in-out infinite; */
			background: -webkit-linear-gradient(var(--text-color), var(--primary-color));
	       -webkit-background-clip: text;
	       -webkit-text-fill-color: transparent;
        }

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

        .app-container {
            position: relative;
            max-width: 450px;
            margin: 1rem auto;
        }

        .app-container img {
            width: 100%;
            display: block;
            pointer-events: none;  
            user-select: none;
            -webkit-user-drag: none;
        }

        .button {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(101, 31, 255, 0.4);
        }

        .button:hover {
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            transform: translateX(-50%) scale(1.02);
            box-shadow: 0 6px 20px rgba(101, 31, 255, 0.6);
        }

        .button a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .button svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .top10-section {
            margin: 0.5rem auto;
            max-width: 1200px;
            padding: 15px;
            position: relative;
        }

        .section-title {
            font-size: 1.8rem;
           /* margin-bottom: 1.5rem; */
           /*  color: var(--primary-color); */
            text-align: center;
            position: relative;
	       background: -webkit-linear-gradient(left, var(--primary-color), var(--primary-light), var(--text-color), var(--text-color));
	       -webkit-background-clip: text;
	       -webkit-text-fill-color: transparent;
        }

        .top10-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .top10-container {
            position: relative;
            flex: 1;
            overflow: hidden;
        }

        .top10-list {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding: 20px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-behavior: smooth;
        }

        .top10-list::-webkit-scrollbar {
            display: none;
        }
        
        .top10-list a {
            text-decoration: none; /* Elimina el subrayado */
            color: var(--text-color);  /* Cambia este color al que desees */
        }
        .top10-list a:hover {
            color: var(--primary-light); /* Cambia el color al pasar el mouse */
        }        

        .top10-item {
            position: relative;
            flex: 0 0 auto;
            width: 200px;
            transition: transform 0.3s ease;
        }

        .top10-item:hover {
            transform: scale(1.05);
            z-index: 10;
        }

        .top10-poster {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .top10-number {
            position: absolute;
            left: 5px;
            bottom: 40px;
            color: #000;
            text-shadow: 2px 2px 0#000, -2px -2px 0#000, 2px -2px 0#000, -2px 2px 0#000;
            -webkit-text-stroke: 3px #fff;
            display: flex;
            justify-content: center;
            font-weight: bold;
            font-size: 5.2rem;
            z-index: 2;
        }

        .top10-info {
            padding: 10px 5px;
        }

        .top10-title {
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .top10-year {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .top10-nav {
            width: 50px;
            height: 50px;
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 2px solid var(--primary-color);
            box-shadow: 0 4px 15px rgba(101, 31, 255, 0.3);
            transition: all 0.3s ease;
            flex-shrink: 0;
            opacity: 0;
            pointer-events: none;
        }

        .top10-nav.active {
            opacity: 1;
            pointer-events: all;
        }

        .top10-nav:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }

        .top10-nav:hover svg {
            fill: white;
        }

        .top10-nav svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-color);
            transition: all 0.3s ease;
        }

        .faq-section {
            max-width: 1200px;
            margin: 0.5rem auto;
            padding: 0 15px;
        }

        .faq-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
           /*  color: var(--primary-color); */
            text-align: center;
            position: relative;
	       background: -webkit-linear-gradient(left, var(--primary-color), var(--primary-light), var(--text-color), var(--text-color));
	       -webkit-background-clip: text;
	       -webkit-text-fill-color: transparent;		
			
        }

        .faq-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            margin: 0.5rem auto 0;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background-color: var(--surface);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: all 0.3s ease;
            border: 1px solid rgba(101, 31, 255, 0.1);
        }

        .faq-item:hover {
            border-color: var(--primary-color);
        }

        .faq-question {
            padding: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            background-color: var(--surfacetabs);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--surfacetabs);
        }

        .faq-question h3 {
            font-size: 1.1rem;
            color: var(--text-color);
            margin: 0;
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-toggle::before,
        .faq-toggle::after {
            content: '';
            position: absolute;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .faq-toggle::before {
            width: 16px;
            height: 2px;
        }

        .faq-toggle::after {
            width: 2px;
            height: 16px;
        }

        .faq-item.active .faq-toggle::after {
            transform: rotate(90deg);
            opacity: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 1.2rem;
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.2rem;
			background-color: var(--surfacefaq);
        }

        .footer {
            text-align: center;
            padding: 1.5rem;
            background-color: var(--background-dark);
            color: var(--text-light);
            font-size: 0.9rem;
            box-shadow: var(--box-shadow);
           /* margin: auto 0 35px 0; */
        }

        @media (max-width: 768px) {
            .header {
                padding: 1rem 0.5rem;
            }
            .header__logo {
                gap: 0.2rem;
            }
            
            .header__title h1 {
                font-size: 1.5rem;
            } 
            
            .stat-number {
                font-size: 1.5rem;
            }             
            
            .hero-container {
                padding: 0.5rem;
            }
            
            .floating-title-3 {
                font-size: 1.5rem;
                line-height: 1.3;
            }
            
            .logo-icon {
              /*  width: 50px;
                height: 50px; */
            }
            
			
			
            .top10-item {
                width: 150px;
            }
            
            .top10-poster {
                height: 225px;
            }
            
            .section-title {
                padding-left: 5px;
                font-size: 1.3rem;
            }
            
            .top10-nav {
                display: none; /* Ocultamos botones en móviles/tablets */
            }
            
            .faq-title {
                font-size: 1.5rem;
            }
            
            .faq-question h3 {
                font-size: 1rem;
            }
          
         .footer {
            margin: auto 0 20px 0;
            }         
 
          }
        
      
      
 
      /* Banner flotante modificado */
        .floating-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            background-color: var(--background-dark);
            padding: 15px 0;
            display: flex;
            justify-content: center;
            z-index: 1000;
            border-top: 1px solid rgba(101, 31, 255, 0.3);
        }

        .banner-container {
            width: 100%;
            max-width: 1200px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .banner-content {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .banner-icon {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            object-fit: contain;
        }

        .banner-text h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 2px;
            /* color: #fff; */
			background: -webkit-linear-gradient(var(--text-color), var(--primary-color));
	       -webkit-background-clip: text;
	       -webkit-text-fill-color: transparent;          
          
        }

        .banner-text p {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .banner-button {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(101, 31, 255, 0.3);
            animation: pulse 2s infinite;
        }
           
        .banner-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(101, 31, 255, 0.5);
        }

        .banner-button svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        @keyframes pulse {
	    0% {
	     	transform: scale(1);
		    box-shadow: 0px 0px 15px #6200EA;
	    }

	   50% {
		   transform: scale(1.05);
		   box-shadow: 0px 0px 20px #651FFF, 0px 0px 30px #651FFF, 0px 0px 40px #651FFF;
	    }

	   100% {
		  transform: scale(1);
		  box-shadow: 0px 0px 15px #6200EA;
	    }
      }

        @media (max-width: 768px) {
            /* ... (otros estilos responsive permanecen igual) ... */

            /* Ajustes para el banner flotante en móviles */
            .floating-banner {
                padding: 10px 0;
            }

            .banner-container {
                padding: 0 10px;
            }

           /* .banner-icon {
                width: 35px;
                height: 35px;
            } */

            .banner-text h3 {
                font-size: 1rem;
            }

            .banner-text p {
                font-size: 0.7rem;
            }

            .banner-button {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }


/* Versión original - ocultar en todos los dispositivos */
.floating-banner {
    display: none;
}

/* Mostrar solo en móviles */
@media only screen and (max-width: 767px) {
    .floating-banner {
        display: block;
        /* mantén aquí todos los estilos que ya tengas para el banner */
    }
}
        
        