.glyphicon {
    padding-top: 150px;
    color: #036CF8;
}

.count-text {
    padding-top: 30px;
}

.count-titles {
    width: 224px;
    display: flex;
    padding-bottom: 5px;
}

.count-titles>div {
    width: 33.3%;
    color: #fff;
}

.count-numbers {
    width: 224px;
    height: 66px;
    display: flex;
}

.day,
.hour,
.minute {
    width: 33.3%;
    height: 66px;
    background: url('../images/countdown_bg.png');
    font-size: 2.5em;
    color: #fff;
    padding-top: 9px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.day {
    background-position-x: left;
}

.hour {
    background-position-x: center;
}

.minute {
    background-position-x: right;
}



@media only screen and (min-width : 320px) and (max-width : 1024px) {

    .slider,
    .count-text,
    .mid-content,
    .games {
        display: none;
    }

    .slide-count {
        padding: 50px 20px;
        display: none;
    }


    .counter {
        /* width: 100%; */
        display: none;
        /* flex-wrap: wrap; */
    }

    /* 
    .count-logo img {
        width: 86px;
        height: 93px;
    }

    .count-logo {
        width: 35%;
    }

    .counter-body {
        width: 65%;
    } */

}

@media only screen and (min-width : 768px) and (max-width : 1024px) {

    .games {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding: 10px 20px;
        justify-content: space-between;
        background: #fff;
    }

    .gameBox {
        width: 600px;
        height: 300px;
        margin: 10px auto;
        box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.3);
    }

    .sportsbookB {
        background: url('../images/sportsbook_mouseover.png') top center;
        background-position-y: top;
    }


    .horsesB {
        background: url('../images/horses_mouseover.png') top center;
    }


    .liveCasinoB {
        background: url('../images/livecasino_mouseover.png') top center;
    }


    .casinoB {
        background: url('../images/casino_mouseover.png') top center;
    }

    .count-logo {
        width: 50%;
        padding-left: 150px;
    }

    .counter-body {
        width: 50%;
    }
}




@media only screen and (min-width : 1025px) {

    .slide-count {
        display: flex;
        padding: 20px;
        justify-content: space-between;
    }

    .slider {
        width: 914px;
        height: 300px;
    }

    .counter {
        width: 288px;
        height: 400px;
        background: url('../images/bg_countdown.jpg')no-repeat center center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .count-container {
        width: 100%;
        height: 100%;
        background: url('../images/live_inplay.png') no-repeat center center;
    }

    .counter-body {
        padding-top: 25px;
    }

    .games {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding: 10px 20px;
        justify-content: space-between;
        background: #fff;
    }

    .gameBox {
        width: 600px;
        height: 300px;
        margin: 10px 0;
        box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.3);
    }

    .sportsbookB {
        background: url('../images/sportsbook_mouseover.png');
        background-position-y: top;

    }

    .sportsbookB:hover {
        background-position-y: bottom;
    }

    .horsesB {
        background: url('../images/horses_mouseover.png');
        background-position-y: top;
    }

    .horsesB:hover {
        background-position-y: bottom;
    }

    .liveCasinoB {
        background: url('../images/livecasino_mouseover.png');
        background-position-y: top;
    }

    .liveCasinoB:hover {
        background-position-y: bottom;
    }

    .casinoB {
        background: url('../images/casino_mouseover.png');
        background-position-y: top;
    }

    .casinoB:hover {
        background-position-y: bottom;
    }

    .mid-content {
        background: url('../images/home1.jpg')no-repeat center center;
    }
}


/* Payment Methods Styles - Responsive Layout */
.payment-methods {
    background: #fff;
    padding: 30px;
    margin: 30px 0;
    /* border-radius: 8px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-methods h2 {
    color: #ef4136;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

/* Contenedor principal para layout flexible */
.payment-content-container {
    display: flex;
    flex-direction: row-reverse;
    /* Cambiado a row-reverse */
    gap: 40px;
}

/* Sección de iconos */
.payment-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
}

/* Sección de información */
.payment-info {
    flex: 1;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    min-width: 0;
}

/* Estilos comunes para los métodos de pago */
.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(239, 65, 54, 0.1);
    border-color: #ef4136;
}

.payment-method img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
}

.payment-method span {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

/* Estilos para la información */
.payment-info h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.payment-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ef4136;
}

.payment-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.payment-info li {
    margin-bottom: 12px;
    color: #555;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e0e0e0;
}

.payment-info li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-info li strong {
    color: #333;
    font-weight: 600;
}

.payment-info .note {
    font-style: italic;
    color: #666;
    font-size: 14px;
    padding: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    border-left: 3px solid #ef4136;
}

/* Responsive: Cambia a layout vertical en móviles */
@media (max-width: 992px) {
    .payment-content-container {
        flex-direction: column;
        gap: 30px;
    }

    .payment-icons {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .payment-method {
        padding: 12px;
    }

    .payment-method img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .payment-methods {
        padding: 20px;
    }

    .payment-methods h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .payment-info {
        padding: 20px;
    }

    .payment-info h3 {
        font-size: 20px;
    }
}


/* Estilos para la sección de promociones */
.promotions-section {
    background: linear-gradient(135deg, #ef4136 0%, #c2352b 100%);
    /* border-radius: 12pxb; */
    padding: 30px;
    margin: 40px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(239, 65, 54, 0.3);
}

.promotions-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.promo-highlight {
    font-weight: 800;
    color: #ffd700;
}

.promo-cta {
    display: inline-block;
    background: #ffd700;
    color: #222;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.promo-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.promo-decoration {
    position: absolute;
    opacity: 0.5;
}

.promo-coin-1 {
    top: 20px;
    left: 20px;
    width: 80px;
    animation: float 6s ease-in-out infinite;
}

.promo-coin-2 {
    bottom: 30px;
    right: 40px;
    width: 100px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.promo-chip {
    top: 50%;
    left: 10%;
    width: 60px;
    animation: float 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive para pantallas <1024px */
@media (max-width: 1024px) {
    .promotions-section {
        padding: 25px 20px;
    }

    .promotions-section h2 {
        font-size: 1.8rem;
    }

    .promo-cta {
        padding: 10px 25px;
        font-size: 1.5rem;
    }

    .promo-decoration {
        width: 50px !important;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        background: linear-gradient(135deg, #ef4136 0%, #d33b30 100%);
        padding: 30px 15px;
    }

    .promotions-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .promo-coin-1,
    .promo-chip {
        display: none;
    }

    .promo-coin-2 {
        width: 70px;
        right: 10px;
        bottom: 10px;
    }
}


.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.slider-track img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

/* Flechas */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}
.prev { left: 10px; }
.next { right: 10px; }
