/* =============================
RESET
============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    height: 100%;
}

body {
    background: #0a0a0a;
    color: white;
    display: flex;
    flex-direction: column;
}



/* =============================
NAVBAR
============================= */

.navbar {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;

    background: #000;

    border-bottom: 2px solid #caa64b;

    z-index: 999;

}

.logo-area {

    display: flex;
    align-items: center;
    gap: 15px;

}

.logo {

    height: 60px;
    width: auto;
    border-radius: 10px;

}

.logo-text {

    display: flex;
    flex-direction: column;

}

.brand {

    font-size: 22px;
    font-weight: bold;
    color: #f2d27a;

}

.sub {

    font-size: 12px;
    color: #caa64b;

}



/* =============================
NAV LINKS
============================= */

.nav-links {

    list-style: none;
    display: flex;
    gap: 30px;

}

.nav-links li {

    position: relative;

}

.nav-links a {

    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;

}

.nav-links a:hover {

    color: #f2d27a;

}



/* =============================
DROPDOWN MENU
============================= */

.dropdown-menu {

    position: absolute;

    top: 40px;
    left: 0;

    background: #000;

    border: 1px solid #caa64b;

    display: none;

    flex-direction: column;

    min-width: 220px;

    list-style: none;

    padding: 5px 0;

    z-index: 999;

}

.dropdown-menu li {

    padding: 12px;

    border-bottom: 1px solid #111;

}

.dropdown-menu li:last-child {

    border-bottom: none;

}

.dropdown-menu li:hover {

    background: #111;

}

.dropdown-menu a {

    font-size: 14px;
    font-weight: normal;

}

.dropdown.active .dropdown-menu {
    display: flex;
}



/* =============================
NAV RIGHT
============================= */

.nav-right {

    display: flex;
    align-items: center;
    gap: 25px;

}



/* =============================
LANGUAGE MENU
============================= */

.language {

    position: relative;

    display: flex;
    align-items: center;

    gap: 6px;

    cursor: pointer;

    font-size: 14px;

}

.language i {

    color: #caa64b;

}

.language-menu {

    position: absolute;

    top: 35px;
    right: 0;

    background: #000;

    border: 1px solid #caa64b;

    display: none;

    flex-direction: column;

    min-width: 140px;

    list-style: none;

}

.language-menu a {

    padding: 10px;

    text-decoration: none;

    color: white;

    font-size: 14px;

}

.language-menu a:hover {

    background: #111;

    color: #f2d27a;

}

.language.active .language-menu {
    display: flex;
}



/* =============================
SOCIAL ICONS NAVBAR
============================= */

.social {

    display: flex;
    gap: 15px;

}

.social a {

    color: white;

    font-size: 18px;

    transition: 0.3s;

}

.social a:hover {

    color: #f2d27a;

    transform: scale(1.2);

}



/* =============================
SLIDER
============================= */

.main {

    height: 90vh;

    width: 100%;

}

.swiper {

    width: 100%;
    height: 100%;

}

.swiper-slide {

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 40px;

}

.swiper-slide h1 {

    font-size: 48px;

    color: #f2d27a;

    max-width: 800px;

}



/* =============================
SLIDE BACKGROUNDS WITH IMAGES
============================= */

.slide1 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
        url("https://images.unsplash.com/photo-1596838132731-3301c3fd4317");
    background-size: cover;
    background-position: center;
}

.slide2 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
        url("https://images.unsplash.com/photo-1511512578047-dfb367046420");
    background-size: cover;
    background-position: center;
}

.slide3 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
        url("https://images.unsplash.com/photo-1561414927-6d86591d0c4f");
    background-size: cover;
    background-position: center;
}

.slide4 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
        url("https://images.unsplash.com/photo-1542751371-adc38448a05e");
    background-size: cover;
    background-position: center;
}

.slide5 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
        url("https://images.unsplash.com/photo-1511512578047-dfb367046420");
    background-size: cover;
    background-position: center;
}



/* PAGINATION */

.swiper-pagination-bullet {

    background: #caa64b;

    opacity: 0.6;

}

.swiper-pagination-bullet-active {

    opacity: 1;

}



/* =============================
CONTACT PAGE
============================= */

.contacts {

    padding: 80px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 80px;

    text-align: center;

    min-height: 80vh;

}

.contacts h2 {

    font-size: 22px;

    letter-spacing: 2px;

    color: #f2d27a;

    margin-bottom: 30px;

}



/* BIG CONTACT ICONS */

.big-contact-icons {

    display: flex;

    justify-content: center;

    gap: 60px;

    flex-wrap: wrap;

    margin-top: 30px;

}

.big-contact-icons a {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-decoration: none;

    color: white;

    font-size: 18px;

    transition: 0.3s;

}

.big-contact-icons i {

    font-size: 80px;

    margin-bottom: 10px;

}

.big-contact-icons a:hover {

    transform: scale(1.15);

}



/* CONTACT COLORS */

.whatsapp i {
    color: #25D366;
}

.telegram i {
    color: #2AABEE;
}

.email i {
    color: #f2d27a;
}



/* =============================
SOCIAL CONTACTS
============================= */

.big-social-icons {

    display: flex;

    justify-content: center;

    gap: 40px;

    margin-top: 40px;

}

.big-social-icons i {

    font-size: 40px;

    color: white;

    transition: 0.3s;

}

.big-social-icons i:hover {

    color: #f2d27a;

    transform: scale(1.2);

}



/* =============================
SUPPORT PAGE
============================= */

.support {

    padding: 80px;

}

.support h1 {

    text-align: center;

    margin-bottom: 40px;

    color: #f2d27a;

}

.card-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

    margin-top: 40px;

}

.app-container {

    background: #111;

    border: 1px solid #caa64b;

    padding: 25px;

    text-decoration: none;

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    transition: 0.3s;

}

.app-container:hover {

    background: #caa64b;

    color: black;

    transform: translateY(-5px);

}

.app-icon {

    width: 70px;

    margin-bottom: 15px;

}

.app-name {

    font-size: 18px;

    font-weight: bold;

    margin-bottom: 5px;

}

.apps-info {

    font-size: 14px;

    opacity: 0.8;

    margin-bottom: 10px;

}

.app-size {

    font-size: 13px;

    margin-bottom: 5px;

}

.app-marker {

    font-size: 12px;

    padding: 4px 8px;

    border-radius: 5px;

    background: #1c1c1c;

}

.marker-green {

    background: #2a8a2a;

    color: white;

}



/* =============================
FOOTER
============================= */

footer {

    margin-top: auto;

    padding: 20px;

    text-align: center;

    background: #000;

    border-top: 2px solid #caa64b;

}



/* =============================
RESPONSIVE
============================= */

@media(max-width:900px) {

    .navbar {

        padding: 20px;

    }

    .nav-links {

        gap: 15px;

    }

    .contacts h2 {

        font-size: 18px;

    }

    .big-contact-icons {

        gap: 40px;

    }

    .big-contact-icons i {

        font-size: 60px;

    }

    .big-social-icons {

        gap: 25px;

    }

    .big-social-icons i {

        font-size: 32px;

    }

}

/* =============================
TV GAMES PAGE
============================= */

.tv-games {

    padding: 80px 60px;

    max-width: 1300px;

    margin: auto;

}

.tv-games h2 {

    color: #f2d27a;

    font-size: 32px;

    margin-bottom: 25px;

    text-align: center;

}

.tv-games p {

    margin-bottom: 30px;

    line-height: 1.6;

    text-align: center;

}



.tv-columns {

    display: flex;

    gap: 40px;

    margin-bottom: 40px;

    flex-wrap: wrap;

}

.tv-column {

    flex: 1;

    min-width: 250px;

}

.tv-column ul {

    margin-top: 10px;

    line-height: 1.8;

}



.tv-subtitle {

    margin-top: 40px;

    margin-bottom: 15px;

    color: #f2d27a;

}



.tv-solutions {

    line-height: 1.8;

    margin-bottom: 50px;

}



.grid-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;

}



.grid-item {

    background: #111;

    border: 1px solid #caa64b;

    position: relative;

    overflow: hidden;
    height: 180px;

}



.product-image {

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}



.product-video {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: 0.4s;

}



.grid-item:hover .product-video {

    opacity: 1;

}



.more-info {

    position: absolute;

    bottom: 10px;

    width: 100%;

    text-align: center;

}

.btn-details {

    background: #ffd700;
    border: none;

    padding: 10px 18px;
    border-radius: 6px;

    font-weight: 600;
    font-size: 14px;

    cursor: pointer;

    transition: 0.3s;

}

.btn-details:hover {

    background: #e6c200;
    transform: scale(1.05);

}

.more-info button {

    background: #caa64b;

    border: none;

    padding: 10px 20px;

    cursor: pointer;

    font-weight: bold;

}



.more-info button:hover {

    background: #f2d27a;

}

.tvgames-description {
    max-width: 1100px;
    margin: 40px auto;
    font-size: 18px;
    line-height: 1.6;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.product-image {
    width: 100%;
    display: block;
}

.product-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .3s;
}

.grid-item:hover .product-video {
    opacity: 1;
}

.more-info {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.more-info button {
    background: #ff3c00;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.more-info2 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
}

/* efecto zoom suave para productos */

.product-image {

    width: 100%;
    display: block;

    transition: transform 0.4s ease;

}

.grid-item:hover .product-image {

    transform: scale(1.08);

}

/* =========================
TERMINALS SECTION
========================= */

.terminals {

    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;

}

.terminals h2 {

    margin-bottom: 25px;
    font-size: 28px;

}

.terminals p {

    margin-bottom: 20px;
    line-height: 1.6;

}

.terminals ul {

    margin: 20px 0 30px 20px;

}

/* GRID */

.terminals .grid-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;

}

/* TARJETAS */

.terminals .grid-item {

    background: #111;
    border-radius: 10px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

}

/* IMAGENES */

.terminals .product-image {

    width: 100%;
    height: 180px;

    object-fit: contain;

    background: #000;

}

/* =========================
WEB SPORTS BETTING
========================= */

.web-sports-betting {

    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;

}

.web-sports-betting h2 {

    margin-bottom: 25px;
    font-size: 28px;

}

.web-sports-betting h3 {

    margin-top: 30px;
    margin-bottom: 15px;

}

.web-sports-betting p {

    margin-bottom: 20px;
    line-height: 1.7;

}

.web-sports-betting ul {

    margin: 20px 0 30px 20px;

}

/* =========================
WEB CASINO
========================= */

.web-casino {

    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;

}

.web-casino h2 {

    margin-bottom: 25px;
    font-size: 28px;

}

.web-casino h3 {

    margin-top: 30px;
    margin-bottom: 15px;

}

.web-casino p {

    margin-bottom: 20px;
    line-height: 1.7;

}

.web-casino ul {

    margin: 20px 0 30px 20px;

}

/* =========================
VIRTUAL GAMES
========================= */

.virtual-games {

    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;

}

.virtual-games h2 {

    margin-bottom: 25px;
    font-size: 28px;

}

.virtual-games h3 {

    margin-top: 30px;
    margin-bottom: 15px;

}

.virtual-games p {

    margin-bottom: 20px;
    line-height: 1.7;

}

.virtual-games ul {

    margin: 20px 0 30px 20px;

}

/* =========================
ROULETTE TOUCH
========================= */

.roulette-touch {

    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;

}

.roulette-touch h2 {

    margin-bottom: 25px;
    font-size: 28px;

}

.roulette-touch h3 {

    margin-top: 30px;
    margin-bottom: 15px;

}

.roulette-touch p {

    margin-bottom: 20px;
    line-height: 1.7;

}

.roulette-touch ul {

    margin: 20px 0 30px 20px;

}

/* =========================
WEB HIPICA
========================= */

.web-hipica {

    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;

}

.web-hipica h2 {

    margin-bottom: 25px;
    font-size: 28px;

}

.web-hipica h3 {

    margin-top: 30px;
    margin-bottom: 15px;

}

.web-hipica p {

    margin-bottom: 20px;
    line-height: 1.7;

}

.web-hipica ul {

    margin: 20px 0 30px 20px;

}

/* =========================
WHITE LABEL
========================= */

.white-label {

    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;

}

.white-label h2 {

    margin-bottom: 25px;
    font-size: 28px;

}

.white-label h3 {

    margin-top: 30px;
    margin-bottom: 15px;

}

.white-label p {

    margin-bottom: 20px;
    line-height: 1.7;

}

.white-label ul {

    margin: 20px 0 30px 20px;

}

/* =========================
CONTACT SECTION
========================= */

.contact {

    max-width: 1200px;
    margin: 20px auto;
    text-align: center;

}

.contact h2 {

    font-size: 28px;
    margin-bottom: 5px;

}

.whatsapp-contact {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 28px;

    background: #25D366;

    color: white;
    font-size: 18px;
    font-weight: 600;

    border-radius: 8px;

    text-decoration: none;

    transition: 0.25s;

}

.whatsapp-contact i {

    font-size: 22px;

}

.whatsapp-contact:hover {

    background: #1ebe5d;
    transform: scale(1.05);

}