body {
    font-family: Arial, sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
}
.logo img {
    height: 70px;
}
.menu {
    list-style: none;
    display: flex;
}
.menu li {
    padding: 0 15px;
}
.menu a {
    text-decoration: none;
    color: blue;
    font-weight: bold;
}
.cart {
    display: flex;
    align-items: center;
}
.cart img {
    height: 30px;
}
.cart-count {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    margin-left: 5px;
}

.navbar-promotion {
    background-color: #0077CC;
    color: white;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.banner {
    background: linear-gradient(to right, #2b00ff, #009dff);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.banner h1 {
    font-size: 2.5em;
    margin: 0;
}
.banner p {
    font-size: 1.5em;
    margin: 10px 0 0;
}
.banner img {
    margin-top: 20px;
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
}
.cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    width: 20%;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 20px;
}

.card-content h2 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.card-content p {
    color: #777;
    margin: 10px 0 0;
}

.card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.spacer {
    height: 100px;

    .marcas-section {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .marcas-title {
        font-size: 2em;
        color: #333;
        margin-bottom: 0px;
        text-align: center;
    }
    
    .marcas-link {
        text-decoration: none;
        color: inherit;
    }
    
    .marcas-link:hover {
        text-decoration: underline;
    }
}
.marcas-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.marca {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.marca-logo {
    width: 100px;
    height: 100px;
    background-color: #ececec;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.marca-logo img {
    max-width: 70%;
    max-height: 70%;
}

.marca-nombre {
    font-size: 1em;
    color: #333;
}


.footer {
    background-color: #fff;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}
.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #333;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 8px 0;
}
.footer-section ul li a {
    text-decoration: none;
    color: #555;
}
.footer-section ul li a:hover {
    text-decoration: underline;
}
.newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.newsletter input[type="checkbox"] {
    margin-right: 10px;
}
.newsletter label {
    font-size: 0.9em;
    color: #555;
}
.newsletter .gender-buttons {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}
.newsletter .gender-buttons button {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}
.newsletter .gender-buttons button:hover {
    background-color: #f0f0f0;
}
.social-media {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-media a {
    margin: 0 10px;
}
.social-media img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #777;
}
.footer-bottom img {
    width: 50px;
    margin: 0 10px;
}

/* Pagina Lanzamientos */

         .lanzamientos-section {
            text-align: center;
            margin: 20px;
        }
        
        .lanzamientos-title {
            font-size: 2em;
            color: #333;
        }
        
        .lanzamientos-description {
            font-size: 1.2em;
            color: #777;
            margin-bottom: 40px;
        }
        
        .lanzcards-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .lanzcard {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s;
            width: 30%;
            padding: 20px;
        }
        
        .lanzcard:hover {
            transform: scale(1.05);
        }
        
        .lanzcard img {
            width: 100%;
            height: auto;
        }
        
        .lanzcard-content {
            padding: 20px;
        }
        
        .lanzcard-content h3 {
            margin: 0;
            font-size: 1.5em;
            color: #333;
        }
        
        .lanzcard-content p {
            color: #777;
            margin: 10px 0 0;
        }

        .lanzcard-content .price {
            font-size: 1.2em;
            color: #333;
            font-weight: bold;
            margin-top: 10px;
        }

        .lanzcard-content .date {
            font-size: 0.9em;
            color: #aaa;
            margin-bottom: 10px;
        }

        /* MENS */

        .gender-seccion {
            text-align: center;
            margin: 20px;
        }
        
        .gender-titulo {
            font-size: 2em;
            color: #333;
        }
        
        .gender-descripcion {
            font-size: 1.2em;
            color: #777;
            margin-bottom: 40px;
        }
        
        .gender-carrusel {
            position: relative;
            max-width: 100%;
            margin: 0 auto 40px;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .gender-carrusel-imagenes {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .gender-imagen-container {
            min-width: 100%;
            height: 0;
            padding-top: 48%;
            position: relative;
        }
        
        .gender-imagen {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
        }

       .mens-seccion {
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    background-color: #f9f9f9;
}

        .mens-contenido {
            max-width: 70%;
        }

        .mens-titulo {
            font-size: 1em;
            color: #333;
            text-transform: uppercase;
            margin-bottom: 1px;
            text-align: left;
        }

        .mens-subtitulo {
            font-size: 2em;
            color: #000;
            margin-bottom: 5px;
            text-align: left;
        }

        .mens-descripcion {
            font-size: 1em;
            color: #777;
            text-align: left;
        }

        .mens-boton-container {
            display: flex;
            align-items: center;
        }

        .mens-boton {
            display: inline-block;
            padding: 10px 20px;
            font-size: 1em;
            color: #000;
            text-decoration: none;
            border: 2px solid #ddd;
            border-radius: 20px;
            transition: background-color 0.3s, color 0.3s;
        }

        .mens-boton:hover {
            background-color: #ddd;
            color: #000;
        }

        .mens-grid-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }

        .mens-grid-item {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            width: 30%;
            position: relative;
        }

        .mens-grid-item:hover {
            transform: scale(1.05);
        }

        .mens-imagen {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .mens-contenido {
            padding: 20px;
        }

        .mens-titulo {
            font-size: 1.5em;
            color: #000;
            margin: 10px 0;
        }

        .mens-descripcion {
            font-size: 1em;
            color: #777;
            margin: 10px 0;
        }

        .mens-link {
            font-size: 1em;
            color: #000;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
            display: inline-block;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .mens-grid-item:hover .mens-link {
            opacity: 1;
        }

        .mens-link:hover {
            text-decoration: underline;
        }
        .mens-seccion {
            display: flex;
            justify-content: space-between;
            align-items: left;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            margin: 10px;
            background-color: #f9f9f9;
        }

        .mens-contenido {
            max-width: 70%;
        }

        .mens-titulo {
            font-size: 1em;
            color: #333;
            text-transform: uppercase;
            margin-bottom: 1px;
            text-align: left;
        }

        .mens-subtitulo {
            font-size: 2em;
            color: #000;
            margin-bottom: 5px;
            text-align: left;
        }

        .mens-descripcion {
            font-size: 1em;
            color: #777;
            text-align: left;
        }

        .mens-boton-container {
            display: flex;
            align-items: center;
        }

        .mens-boton {
            display: inline-block;
            padding: 10px 20px;
            font-size: 1em;
            color: #000;
            text-decoration: none;
            border: 2px solid #ddd;
            border-radius: 20px;
            transition: background-color 0.3s, color 0.3s;
        }

        .mens-boton:hover {
            background-color: #ddd;
            color: #000;
        }

        .mens-grid-container, .menss-grid-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }

        .mens-grid-item, .menss-grid-item {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            width: 30%;
            position: relative;
        }

        .mens-grid-item:hover, .menss-grid-item:hover {
            transform: scale(1.05);
        }

        .mens-imagen, .menss-imagen {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .mens-contenido, .menss-contenido {
            padding: 20px;
        }

        .mens-titulo, .menss-titulo {
            font-size: 1.5em;
            color: #000;
            margin: 10px 0;
        }

        .mens-descripcion, .menss-descripcion {
            font-size: 1em;
            color: #777;
            margin: 10px 0;
        }

        .mens-link, .menss-link {
            font-size: 1em;
            color: #000;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
            display: inline-block;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .mens-grid-item:hover .mens-link, .menss-grid-item:hover .menss-link {
            opacity: 1;
        }

        .mens-link:hover, .menss-link:hover {
            text-decoration: underline;
        }

         /*WMNS*/

        .wnsgender-seccion {
            text-align: center;
            margin: 20px;
        }
        
        .wnsgender-titulo {
            font-size: 2em;
            color: #333;
        }
        
        .wnsgender-descripcion {
            font-size: 1.2em;
            color: #777;
            margin-bottom: 40px;
        }

        .wnsgender-carrusel {
            position: relative;
            max-width: 100%;
            margin: 0 auto 40px;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .wnsgender-carrusel-imagenes {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .wnsgender-imagen-container {
            min-width: 100%;
            height: 0;
            padding-top: 52%;
            position: relative;
        }
        
        .wnsgender-imagen {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
        }

        .wns-seccion {
            text-align: center;
            margin: 20px;
        }
        
        .wns-titulo {
            font-size: 2em;
            color: #000;
        }
        
        .wns-subtitulo {
            font-size: 1em;
            color: #777;
            font-style: italic;
        }
        
        .wns-grid-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        
        .wns-grid-item {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            width: 22%;
            position: relative;
        }
        
        .wns-grid-item:hover {
            transform: scale(1.05);
        }
        
        .wns-imagen {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .wns-contenido {
            background-color: #000;
            color: #fff;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .wns-descripcion {
            font-size: 1em;
            margin: 0;
        }
        
        .wns-link {
            font-size: 1.5em;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            margin: 0;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .wns-grid-item:hover .wns-link {
            opacity: 1;
        }
        
        .wns-link:hover {
            text-decoration: underline;
        } 

        .wmns-seccion {
            padding: 20px;
        }
        
        .wmns-titulo {
            font-size: 1.5em;
            color: #000;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .wmns-grid-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .wmns-grid-item {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            width: 22%;
            border: 1px solid #ddd;
            position: relative;
        }
        
        .wmns-grid-item:hover {
            transform: scale(1.05);
        }
        
        .wmns-imagen {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .wmns-contenido {
            padding: 10px;
        }
        
        .wmns-subtitulo {
            font-size: 1.2em;
            color: #000;
            margin: 10px 0;
        }
        
        .wmns-link {
            font-size: 1em;
            color: #000;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 10px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .wmns-grid-item:hover .wmns-link {
            opacity: 1;
        }
        
        .wmns-link:hover {
            text-decoration: underline;
        }

        /*Kids*/

        .jrs-seccion {
            font-family: Arial, sans-serif;
            position: relative;
            width: 200%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            background-color: #f9f9f9;
        }
        
        .jrs-contenedor-imagen {
            position: relative;
        }
        
        .jrs-imagen {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        
        .jrs-texto-superpuesto {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        }
        
        .jrs-titulo {
            font-size: 1em;
            margin: 0;
        }
        
        .jrs-descripcion {
            font-size: 1.2em;
            margin: 10px 0;
        }
        
        .jrs-boton {
            display: inline-block;
            padding: 10px 20px;
            font-size: 1em;
            color: white;
            background-color: #6200ea;
            text-decoration: none;
            border-radius: 25px;
            transition: background-color 0.3s;
        }
        
        .jrs-boton:hover {
            background-color: #3700b3;
        }
        
        .jrs-categorias {
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            text-align: center;
            margin: 20px;
        }
        
        .jrs-titulo h2 {
            font-size: 2em;
            color: #333;
            margin-bottom: 20px;
        }
        
        .jrs-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .jrs-tablinks {
            background-color: #f1f1f1;
            border: none;
            outline: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 1em;
            transition: background-color 0.3s;
        }
        
        .jrs-tablinks:hover {
            background-color: #ddd;
        }
        
        .jrs-tablinks.active {
            background-color: #6200ea;
            color: white;
        }
        
        .jrs-tabcontent {
            display: none;
        }
        
        .jrs-tabcontent.active {
            display: block;
        }
        
        .jrs-grid-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .jrs-grid-item {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            width: 30%;
        }
        
        .jrs-grid-item:hover {
            transform: scale(1.05);
        }
        
        .jrs-imagen {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .jrs-subtitulo {
            font-size: 1.5em;
            color: #000;
            margin: 10px 0;
        }
        
        .jrs-edad {
            font-size: 1em;
            color: #777;
            margin: 10px 0;
        }
        
        .jrs-boton {
            display: inline-block;
            padding: 10px 20px;
            font-size: 1em;
            color: white;
            background: linear-gradient(90deg, rgba(98,0,234,1) 0%, rgba(27,128,252,1) 100%);
            text-decoration: none;
            border-radius: 25px;
            transition: background-color 0.3s;
        }
        
        .jrs-boton:hover {
            background-color: #3700b3;
        }
        
        .jrs-categorias-seccion {
            margin-top: 40px;
        }
        
        .jrs-categorias-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .jrs-categoria-item {
            text-align: center;
            flex: 1;
            min-width: 120px;
            max-width: 150px;
        }
        
        .jrs-categoria-imagen {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #ececec;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .jrs-cuadro-texto {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: left;
            margin-top: 20px;
        }
        
        .jrs-cuadro-texto h3 {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 10px;
        }
        
        .jrs-cuadro-texto p {
            font-size: 1em;
            color: #777;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .jrs-ver-mas {
            display: inline-block;
            color: #1e88e5;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
        }
        
        .jrs-ver-mas:hover {
            text-decoration: underline;
        }

        /*Sports*/

        .sport-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .sport-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: #ffffff;
            flex-direction: row;
        }
        
        .sport-container .sport-img {
            position: relative;
            width: 250px;
            height: 200px;
            transition: 0.5s;
            transform-origin: bottom center;
            -webkit-box-reflect: below 1px linear-gradient(transparent, #0002);
            margin: 5px;
        }
        
        .sport-container .sport-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .sport-container .sport-img.hovered {
            transform: perspective(700px) rotateY(0deg) scale(2); 
            z-index: 10000;
        }
        
        .sport-container .sport-img.prev,
        .sport-container .sport-img.next {
            margin: 0 -20px;
            transform: perspective(700px) rotateY(45deg) scale(1);
        }
        
        .sport-info {
            text-align: center;
            margin-top: 20px;
            position: relative;
            top: -180px;
        }
        
        .sport-info .sport-title {
            font-size: 1.5em;
            color: #333;
        }
        
        .sport-info .sport-text {
            font-size: 1em;
            color: #777;
            line-height: 1.5;
            margin-top: 10px;
        }
        
        .sportss {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            max-width: 1200px;
            margin: 0px auto; 
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }

        .sportss h2 {
            color: #333;
            margin-top: 20px;
        }

        .sportss p {
            color: #666;
            margin-bottom: 10px;
        }

        .sportss a {
            color: #007bff;
            text-decoration: none;
        }

        .sportss a:hover {
            text-decoration: underline;
        }

        /*Casual*/
    .casual-container {
        text-align: center;
        margin: 20px auto;
    }

    .casual-image-text {
        position: relative;
        display: inline-block;
    }

    .casual-image-text img {
        width: 100%;
        max-width: 1600px;
        border-radius: 15px;
    }

    .casual-text-overlay {
        position: absolute;
        top: 80%;
        left: 20%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 20px;
        border-radius: 8px;
    }

    .casual-text-overlay h2 {
        margin: 0;
        font-size: 24px;
    }

    .casual-text-overlay p {
        margin: 10px 0;
    }

    .casual-buttons {
        margin: 20px 0;
    }

    .casual-btn {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        margin: 0 10px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
    }

    .casual-btn:hover {
        background-color: #0056b3;
    }

    .casual-dropdown {
        display: none;
        margin: 20px 0;
        text-align: left;
    }

    .casual-dropdown a {
        display: block;
        padding: 10px;
        background-color: #f4f4f4;
        margin: 5px 0;
        text-decoration: none;
        color: #333;
        border-radius: 4px;
    }

    .casual-dropdown a:hover {
        background-color: #ddd;
    }

    .best-sellers {
        text-align: center;
        padding: 20px;
    }

    .best-sellers h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .products-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .product-item {
        position: relative;
        width: calc(33.333% - 10px);
        max-width: 300px;
        margin: 10px;
    }

    .product-item img {
        width: 100%;
        border-radius: 8px;
    }

    .overlay {
        position: absolute;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        width: 100%;
        padding: 10px;
        text-align: left;
        border-radius: 0 0 8px 8px;
    }

    .overlay .brand {
        font-size: 0.9em;
        margin: 0;
    }

    .overlay h3 {
        margin: 5px 0;
        font-size: 1.2em;
    }

    .overlay a {
        color: white;
        text-decoration: none;
        font-weight: bold;
    }

    .overlay a:hover {
        text-decoration: underline;
    }

    /*Teams*/

    .teams-section {
        position: relative;
        text-align: left;
    }

    .teams-section img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .teams-text-box {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .teams-text-box h2 {
        margin-top: 0;
        font-size: 1.5em;
        color: #000;
    }

    .teams-text-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .teams-text-box ul li {
        margin: 5px 0;
    }

    .teams-text-box ul li a {
        text-decoration: none;
        color: #007bff;
        font-size: 1em;
    }

    .teams-text-box ul li a:hover {
        text-decoration: underline;
    }

    .team-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        max-width: 1200px;
        margin: 20px auto;
    }

    .team-text p:first-child {
        text-transform: uppercase;
        font-size: 0.9em;
        font-weight: bold;
        color: #555;
        margin: 0;
    }

    .team-text h1 {
        font-size: 2em;
        margin: 10px 0;
        color: #000;
    }

    .team-text p:last-child {
        font-size: 1em;
        color: #555;
        margin: 0;
    }

    .team-button {
        display: flex;
        align-items: center;
    }

    .team-buy-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1em;
        color: #000;
        border: 1px solid #ccc;
        border-radius: 20px;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
    }

    .team-buy-button:hover {
        background-color: #007bff;
        color: #fff;
    }

    .team-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        max-width: 1200px;
        margin: 20px auto;
    }

    .team-text p:first-child {
        text-transform: uppercase;
        font-size: 0.9em;
        font-weight: bold;
        color: #555;
        margin: 0;
    }

    .team-text h1 {
        font-size: 2em;
        margin: 10px 0;
        color: #000;
    }

    .team-text p:last-child {
        font-size: 1em;
        color: #555;
        margin: 0;
    }

    .team-button {
        display: flex;
        align-items: center;
    }

    .team-buy-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1em;
        color: #000;
        border: 1px solid #ccc;
        border-radius: 20px;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
    }

    .team-buy-button:hover {
        background-color: #007bff;
        color: #fff;
    }

    .carousel-container {
        max-width: 1200px;
        margin: 20px auto;
        padding: 20px;
        text-align: center;
    }

    .carousel img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .slick-prev, .slick-next {
        background-color: #007bff;
        color: #fff;
        border-radius: 50%;
        padding: 10px;
    }

    .slick-prev:hover, .slick-next:hover {
        background-color: #0056b3;
    }

    .teams-text {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .teams-text p {
        margin-bottom: 10px;
        color: #333;
        line-height: 1.6;
    }

    .teams-text a {
        color: #007bff;
        text-decoration: none;
    }

    .teams-text a:hover {
        text-decoration: underline;
    }

    .teams-text h2 {
        margin-top: 20px;
        color: #333;
    }
