:root {
    --primary-color: #4e73df;
    --secondary-color: #6c757d;
    --success-color: #1cc88a;
    --danger-color: #e74a3b;
    --warning-color: #f6c23e;
    --info-color: #36b9cc;
    --dark-bg: #121212;
    --dark-text: #f0f0f0;
    --dark-card-bg: #1e1e1e;
    --light-bg: #f8f9fc;
    --light-text: #333333;
    --light-card-bg: #ffffff;
    --font-family: 'Nunito', 'Segoe UI', Roboto, Arial, sans-serif;
    --desktop-width: 1024px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--light-bg);
    color: var(--light-text);
    transition: background-color 0.3s, color 0.3s;
    padding-top: 100px;
    width: var(--desktop-width);
    margin: 0 auto;
}

body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

body.light-theme .provider-card {
    background-color: #0F172A; 
    color: white;
}

body.light-theme .section-title {
    color: #0F172A;
}

body.light-theme .provider-banner img {
    filter: brightness(0.8);
}

body.light-theme .provider-action {
    background-color: #1c2536;
    color: white;
}

body.light-theme .btn-provider a {
    color: white;
}

.container {
    width: 100%;
    max-width: var(--desktop-width);
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(78, 115, 223, 0.8);
    color: white;
    text-align: center;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: rgba(78, 115, 223, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-title {
    font-size: 1.8rem;
    font-weight: bold;
}

.site-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.carol-container {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: auto;
    position: relative;
    flex: 0 0 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
}

.carousel-indicator.active {
    background-color: white;
}

.hot-games-swiper {
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin-bottom: 30px;
}

.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
}

.swiper-slide {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s;
    background-color: white;
}

.swiper-slide:hover {
    transform: translateY(-5px);
}

.slide-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.slide-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hot-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 69, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
}

.slide-info {
    padding: 0;
    background-color: white;
    color: black;
    text-align: center;
}

.slide-rtp {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1cc88a;
}

.slide-name {
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: bold;
    color: #333;
}

.slide-rtp-bar {
    width: 100%;
    height: 20px;
    background-color: #282828;
    position: relative;
    text-align: center;
    margin: 0;
}

.slide-rtp-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.slide-rtp-fill {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-rtp-fill.rtp-high {
    background-color: #1cc88a;
}

.slide-rtp-fill.rtp-medium {
    background-color: #f6c23e;
}

.slide-rtp-fill.rtp-low {
    background-color: #e74a3b;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 5px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-sizing: border-box;
}

.social-buttons::-webkit-scrollbar {
    display: none;
}

.cta {
    flex: 0 0 auto;
    min-width: 150px;
    display: flex;
    padding: 11px 22px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    background: #6225e6;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
    align-items: center;
    white-space: nowrap;
    margin: 0 5px;
    position: relative;
    height: 50px;
}

.cta:focus {
    outline: none;
}

.cta:hover {
    transition: 0.3s;
    box-shadow: 10px 10px 0 #fbc638;
    transform: skewX(-15deg) translateY(-2px);
}

.cta .span {
    transform: skewX(15deg);
    display: inline-block;
    position: relative;
    z-index: 2;
}

.cta .second {
    width: 20px;
    margin-left: 20px;
    position: relative;
    top: 12%;
    transition: 0.3s;
    z-index: 1;
}

.cta:hover .second {
    margin-right: 10px;
    margin-left: 30px;
}

.cta .one {
    transition: 0.4s;
    transform: translateX(-60%);
}

.cta .two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta:hover .three {
    animation: color_anim 1s infinite 0.2s;
}

.cta:hover .one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta:hover .two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
    0% { fill: white; }
    50% { fill: #fbc638; }
    100% { fill: white; }
}

.cta.custom-web { 
    background-color: #0F172A;
    color: whitesmoke;
}

.cta.whatsapp { 
    background-color: #0F172A; 
    color: whitesmoke; 
}

.cta.instagram { 
    background-color: #0F172A; 
    color: whitesmoke; 
}

.cta.telegram { 
    background-color: #0F172A; 
    color: whitesmoke; 
}

.cta.twitter { 
    background-color: #0F172A; 
    color: whitesmoke; 
}

.cta.facebook {
    background-color: #0F172A; 
    color: whitesmoke; 
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 1000px;
}

.provider-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.provider-card:hover {
    transform: translateY(-5px);
}

.provider-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.provider-banner img {
    width: 100%;
    height: 180px;
    display: block;
    border-radius: 10px 10px 0 0;
}

.provider-action {
    background-color: #1cc88a;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: bold;
}

.btn-provider {
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 0 10px;
    width: 100%;
}

.provider-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.provider-card a:hover {
    text-decoration: none;
}

.article-content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-content a {
    color: #4e73df;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content ul, .article-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.article-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

body.dark-theme .article-content {
    background-color: rgba(30, 30, 30, 0.9);
    color: #f0f0f0;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    font-size: 0.9rem;
    margin: 0;
}

.copyright {
    font-size: 0.85rem;
}

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: auto !important;
    -khtml-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}