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

:root {
    --primary-purple: #003d82;
    --primary-blue: #003d82;
    --dark-blue: #001f4d;
    --light-bg: #F8F9FA;
    --text-dark: #2D3436;
    --text-light: #636E72;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: white;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 10000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.logo-image {
    max-height: 60px;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    image-rendering: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: auto;
}

.logo-svg {
    display: flex;
    align-items: center;
}

.logo-svg svg {
    width: 50px;
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-purple);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 100000;
}

/* Mensaje de bienvenida en navbar */
/* User Welcome Navbar - Estructura Original */
.user-welcome-navbar {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    position: relative;
}

.user-welcome-navbar span {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.mi-cuenta-btn {
    background: white;
    color: #667eea;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.mi-cuenta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.user-dropdown {
    position: relative;
    z-index: 100000;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    overflow: hidden;
    z-index: 100001 !important;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #2D3436;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    border-bottom: 1px solid #f1f3f4;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    padding-left: 25px;
}

.dropdown-item.logout {
    color: #e74c3c;
}

.dropdown-item.logout:hover {
    background: #ffebee;
}

.item-icon {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: #e1e8ed;
    margin: 5px 0;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 130, 0.3);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-outline:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.btn-icon {
    background: var(--primary-purple);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-icon:hover {
    background: #0052cc;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003d82 0%, #001f4d 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.hero-fullimage {
    padding: 0;
}

.hero-container-full {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    outline: none;
}

.search-btn {
    background: var(--primary-purple);
    border: none;
    padding: 18px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #0052cc;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.laptop-mockup {
    position: absolute;
    bottom: 100px;
    left: 50px;
    width: 350px;
    height: 250px;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-15deg);
}

/* Hero Image Styles */
.hero-image-container {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 650px;
    height: 650px;
    transform: perspective(1000px) rotateY(-15deg);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
}

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

/* Hero Carousel Styles - Fullwidth */
.hero-carousel-container-full {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image-container-full {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    display: none;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003d82 0%, #001f4d 100%);
}

.placeholder-content {
    text-align: center;
    color: white;
    opacity: 0.6;
}

.placeholder-content svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.placeholder-content p {
    font-size: 18px;
    font-weight: 500;
}

/* Hero Carousel Styles */
.hero-carousel-container {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 650px;
    height: 650px;
    transform: perspective(1000px) rotateY(-15deg);
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-carousel-slide.active {
    opacity: 1;
    z-index: 0;
}

.hero-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Imagen móvil - se oculta por defecto */
.hero-carousel-img-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: none;
}

.hero-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
    border-color: white;
}

.carousel-indicator.active {
    background: white;
    width: 40px;
    border-radius: 7px;
    border-color: white;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 5px;
}

.person-image {
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 300px;
    height: 400px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 200px 200px 0 0;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Marquee */
.marquee-section {
    background: white;
    padding: 40px 0;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    padding: 0 40px;
    background: linear-gradient(135deg, var(--primary-purple), #E17055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marquee-item:nth-child(even) {
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background: #f8f9fa;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2D3436;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-section,
.services-section {
    padding: 80px 0;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.card-link:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #003d82 0%, #001f4d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.contact-person {
    width: 300px;
    height: 400px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 200px 200px 0 0;
}

.contact-text {
    text-align: center;
    color: white;
    flex: 1;
}

.contact-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.btn-contact {
    background: white;
    color: var(--text-dark);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.astronaut {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #E8E5FF 0%, #D5D0FF 100%);
    border-radius: 50%;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Botón hamburguesa */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menú móvil */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding-top: 80px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    background: white;
    margin: 0 20px;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mobile-menu-content .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.mobile-menu-content .nav-menu li {
    border-bottom: 1px solid var(--border);
}

.mobile-menu-content .nav-menu li:last-child {
    border-bottom: none;
}

.mobile-menu-content .nav-menu a {
    display: block;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu-content .nav-menu a:hover {
    color: var(--primary-purple);
}

.mobile-menu-actions {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-actions .btn-primary,
.mobile-menu-actions .btn-secondary-outline {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    text-align: center;
}

/* Mensaje de bienvenida usuario */
.welcome-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 0;
}

.welcome-content {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.welcome-content h2 {
    margin: 0 0 5px 0;
    font-size: 28px;
    color: white;
}

.welcome-content p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.welcome-content a {
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.welcome-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .welcome-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .welcome-content h2 {
        font-size: 24px;
    }
    
    .welcome-content a {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero {
        height: 400px;
    }
    
    /* Mostrar imagen móvil en tablets y móviles */
    .hero-carousel-img {
        display: none;
    }
    
    .hero-carousel-img-mobile {
        display: block !important;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .laptop-mockup {
        width: 250px;
        height: 180px;
    }
    
    .hero-image-container {
        width: 400px;
        height: 400px;
    }
    
    .hero-carousel-container {
        width: 400px;
        height: 400px;
        bottom: 30px;
        left: 30px;
    }
    
    .hero-carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .carousel-indicator {
        width: 12px;
        height: 12px;
    }
    
    .carousel-indicator.active {
        width: 30px;
    }
    
    .person-image {
        width: 200px;
        height: 300px;
    }
    
    .marquee-item {
        font-size: 32px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .contact-person,
    .astronaut {
        display: none;
    }
    
    .contact-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .cards-grid {
        gap: 20px;
    }
    
    .card {
        padding: 25px;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* User welcome navbar responsive */
    .user-welcome-navbar {
        padding: 8px 15px;
        gap: 10px;
    }
    
    .user-welcome-navbar span {
        font-size: 13px;
    }
    
    .mi-cuenta-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    /* Logo optimizado para móviles - sin temblor */
    .logo-image {
        max-height: 50px;
        max-width: 150px;
        width: auto;
        height: auto;
        object-fit: contain;
        image-rendering: auto;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-svg svg {
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   ENLACES DE BOTONES (para usuarios no registrados)
   ======================================== */
.btn-buy, .btn-buy-large, .plan-button {
    text-decoration: none !important;
}

.btn-buy:hover, .btn-buy-large:hover, .plan-button:hover {
    text-decoration: none !important;
}

/* ========================================
   BOTONES DE WHATSAPP
   ======================================== */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    text-decoration: none !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

/* ========================================
   ALLIES CAROUSEL
   ======================================== */
.allies-carousel-container {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 20px;
}

.allies-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.allies-track {
    display: flex;
    gap: 50px;
    cursor: grab;
    user-select: none;
    transition: transform 0.1s ease;
}

.allies-track:active {
    cursor: grabbing;
}

.ally-item {
    flex: 0 0 300px;
    min-width: 300px;
}

.ally-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.ally-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ally-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ally-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}


.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Responsive Allies */
@media (max-width: 768px) {
    .allies-carousel {
        padding: 20px 10px;
    }
    
    .ally-item {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .ally-card {
        padding: 15px;
        min-height: 100px;
    }
    
    .ally-logo {
        width: 80px;
        height: 80px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ally-item {
        flex: 0 0 150px;
        min-width: 150px;
    }
    
    .ally-card {
        padding: 10px;
        min-height: 80px;
    }
    
    .ally-logo {
        width: 60px;
        height: 60px;
    }
}
