html,
body{
    margin:0;
    padding:0;
    width:100%;
    min-height:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

body{
    color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    min-height:100vh;

    background:
    linear-gradient(
        180deg,
        #6d37d5 0%,
        #4d008e 25%,
        #75e2ff 50%,
        #b84fff 75%,
        #4d008e 100%
    );

    background-attachment:fixed;
    background-repeat:no-repeat;
    background-size:cover;
}

/* ======================================================
   HOME
====================================================== */

.home-page{
    width:100%;
    overflow:hidden;
}

/* ======================================================
   TOPBAR
====================================================== */

.topbar{

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:25px;

    padding:15px 40px;

    background:rgba(0,0,0,0.35);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,0.08);
}

/* LOGO */

.logo-area{
    display:flex;
    align-items:center;
}

.logo-area img{
    height:50px;
    width:auto;
}

/* MENU */

.menu-area{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;

    flex-wrap:wrap;
}

.menu-area a{
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.menu-area a:hover{
    color:#75e2ff;
}

/* LOGIN */

.login-area{
    display:flex;
    align-items:center;
}

.login-btn{
    background:#39ff5a;
    color:black;

    padding:12px 25px;

    border-radius:15px;

    text-decoration:none;
    font-weight:bold;

    transition:0.3s;
}

.login-btn:hover{
    background:#2de84c;
    color:black;
}

/* ======================================================
   HERO
====================================================== */

.hero-new{
    width:100%;
    padding:1px 1px;
}

.hero-new h1{
    text-align:center;
    font-size:25px;
    font-weight:900;
    margin-bottom:10px;
}

/* GRID */

.hero-grid{
    width:100%;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;
}

/* COLUMNS */

.left-side,
.right-side{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* ======================================================
   BOXES
====================================================== */

.image-box,
.character-box,
.sponsor-box,
.sponsor-box2,
.trophy-box,
.winner-image{
    border-radius:25px;

    background:transparent;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

/* IMAGES */

.image-box img,
.character-box img,
.sponsor-box img,
.trophy-box img,
.winner-image img{
    max-width:100%;
    object-fit:contain;
}

/* ======================================================
   SPONSOR
====================================================== */

.sponsor-box2{

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:10px;

    text-align:center;

    color:white;

    padding:10px;
}

.sponsor-box2 h2{
    width:100%;
    text-align:center;
    margin:0;
    font-size:32px;
    font-weight:800;
}

.sponsor-box2 p{
    width:100%;
    text-align:center;
    margin:0;
    font-size:18px;
}

/* ======================================================
   TROPHY
====================================================== */

.trophy-box{
    margin-bottom:0;
    padding-bottom:0;
    min-height:auto;
}

.trophy-img{
    height:170px;
    width:auto;

    margin-bottom:-10px;
}

/* ======================================================
   TICKET CARD
====================================================== */

.ticket-card{
    background:white;
    color:black;

    padding:30px;

    border-radius:25px;

    text-align:center;
}

.ticket-card h2{
    font-weight:900;
}

.ticket-input{
    width:100%;

    border-radius:12px;

    border:2px solid #7b61ff;

    padding:12px;

    margin-top:20px;
}

.redeem-btn{

    margin-top:20px;

    width:100%;

    border:none;

    padding:15px;

    border-radius:15px;

    background:#39ff5a;

    font-weight:bold;
}

.ticket-total{
    font-size:60px;
    font-weight:900;
}

/* ======================================================
   RANKING
====================================================== */

.ranking-box{

    background:rgba(0,0,0,0.22);

    border-radius:30px;

    padding:20px;

    margin-top:-15px;

    backdrop-filter:blur(12px);
}

.ranking-header{

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    margin-bottom:10px;
}

.ranking-header h2{

    margin:0;

    font-size:24px;
    font-weight:900;

    color:white;
}

.ranking-table{
    width:100%;
    color:white;
    border-collapse:collapse;
}

.ranking-table td{

    padding:14px 16px;

    border-bottom:1px solid rgba(255,255,255,0.08);

    background:rgba(0,0,0,0.12);

    font-weight:600;
}

.ranking-table tr:hover td{

    background:rgba(0,0,0,0.20);

    transition:0.3s;
}

/* ======================================================
   WINNER
====================================================== */

.winner-section{

    width:100%;

    text-align:center;

    margin-top:80px;

    padding:0 40px;
}

.winner-section h2{

    margin-bottom:40px;

    font-size:42px;
    font-weight:900;
}

.winner-section h3{

    margin-top:30px;

    font-size:48px;
    font-weight:900;
}

/* ======================================================
   FAQ
====================================================== */

.faq-section{

    width:100%;

    padding:80px 40px;

    margin-top:40px;
}

.faq-section h2{

    text-align:center;

    margin-bottom:30px;

    font-weight:900;
}

.custom-faq .accordion-item{
    background:transparent;
    border:none;
    margin-bottom:20px;
}

.custom-faq .accordion-button{

    background:white;

    color:#a855f7;

    border-radius:20px !important;

    font-weight:800;

    padding:22px 30px;

    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:white;
    color:#9333ea;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-body{

    margin-top:10px;

    background:rgba(255,255,255,0.12);

    border-radius:20px;

    color:white;

    padding:25px;

    backdrop-filter:blur(10px);
}

.custom-faq .accordion-button::after{
    filter:brightness(0) saturate(100%) invert(38%) sepia(90%) saturate(1600%) hue-rotate(250deg);
}

/* ======================================================
   AUTH
====================================================== */

.auth-container{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;
}

.auth-card{

    width:100%;
    max-width:420px;

    background:rgba(255,255,255,0.08);

    border-radius:20px;

    padding:40px;

    backdrop-filter:blur(10px);

    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* ======================================================
   NAVBAR HEADER
====================================================== */

.home-style-navbar{
    width:100%;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:0;
    min-height:82px;
}

/* WRAPPER */

.navbar-wrapper{
    width:100%;
    max-width:100%;

    padding-left:20px;
    padding-right:20px;

    display:flex;
    align-items:center;
}

/* LOGO */

.navbar-logo{
    margin:0;
    padding:0;
}

.navbar-logo img{
    height:65px;
    width:auto;
    display:block;
}

/* COLLAPSE */

.home-style-navbar .navbar-collapse{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}

/* SEARCH */

.navbar-center-search{
    flex:1;

    display:flex;
    justify-content:center;

    padding:0 30px;
}

.navbar-center-search .position-relative{
    max-width:420px;
    width:100%;
}

.navbar-search-input{
    height:46px;

    border-radius:14px;

    border:none;

    background:rgba(255,255,255,0.08);

    color:white;

    padding-left:18px;
}

.navbar-search-input:focus{
    background:rgba(255,255,255,0.12);
    color:white;
    box-shadow:none;
}

.navbar-search-input::placeholder{
    color:rgba(255,255,255,0.55);
}

/* RIGHT */

.navbar-right-section{
    display:flex;
    align-items:center;
    gap:15px;
}

/* TICKETS */

.navbar-ticket{
    background:linear-gradient(90deg,#00c853,#64dd17);

    color:white;

    font-weight:700;

    padding:10px 15px;

    border-radius:12px;
}

/* USER BUTTON */

.navbar-user-btn{
    background:rgba(255,255,255,0.08);

    border:none;

    color:white;

    border-radius:14px;

    padding:10px 18px;
}

.navbar-user-btn:hover{
    background:rgba(255,255,255,0.14);
    color:white;
}

/* LOGIN */

.navbar-login-btn{
    background:#39ff5a;

    color:black;

    border:none;

    padding:12px 22px;

    border-radius:14px;

    font-weight:700;
}

.navbar-login-btn:hover{
    background:#2de84c;
    color:black;
}

/* TOGGLER */

.home-style-navbar .navbar-toggler{
    border:none;
}

.home-style-navbar .navbar-toggler:focus{
    box-shadow:none;
}

/* ======================================================
   MOBILE
====================================================== */

@media(max-width:991px){

    .topbar{

        flex-direction:column;

        justify-content:center;
        align-items:center;

        text-align:center;

        padding:20px;
    }

    .menu-area{

        justify-content:center;

        gap:15px;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-new{
        padding:40px 20px;
    }

    .faq-section{
        padding:60px 20px;
    }

    .winner-section{
        padding:0 20px;
    }


    @media(max-width:768px){

    .hero-new h1{
        font-size:32px;
    }

}

    .winner-section h3{
        font-size:36px;
    }

    .home-style-navbar{
        padding:12px 0;
    }

    .home-style-navbar .navbar-collapse{
        margin-top:20px;
        align-items:stretch;
    }

    .navbar-center-search{
        width:100%;
        padding:0;
        margin-bottom:20px;
    }

    .navbar-right-section{
        width:100%;
        justify-content:flex-start;
        flex-wrap:wrap;
    }

}

/* HEADER */
.header,
.navbar,
.topbar,
.header-container {
    position: relative;
    z-index: 1000;
}

/* Dropdown del usuario */
.user-dropdown,
.dropdown-menu,
.profile-menu {
    position: absolute;
    z-index: 9999 !important;
}

/* Tabla */
.table-container,
.table-responsive,
.dashboard-table,
table {
    position: relative;
    z-index: 1;
}
/* =========================
   BOTONES VERDES GRADIENTE
========================= */

/* LOGIN HOME NAVBAR */
.login-btn,
.btn-login {
    background: linear-gradient(135deg, #16ff24, #88f5c7);
    border: none;
    color: #c470fb;
    transition: all 0.3s ease;
}

/* BOTONES HEADER */
.header .btn,
.navbar .btn-success {
    background: linear-gradient(135deg, #16ff24, #88f5c7);
    border: none;
    color: #c470fb;
    transition: all 0.3s ease;
}

/* BOTÓN CANJEAR CÓDIGO */
.redeem-btn,
.btn-redeem {
    background: linear-gradient(135deg, #16ff24, #88f5c7);
    border: none;
    color: #c470fb;
    transition: all 0.3s ease;
}

/* HOVER */
.login-btn:hover,
.btn-login:hover,
.header .btn:hover,
.navbar .btn-success:hover,
.redeem-btn:hover,
.btn-redeem:hover {
    background: linear-gradient(135deg, #88f5c7, #16ff24);
    color: #c470fb;
    transform: translateY(-2px);
}

/* =========================
   DROPDOWN HEADER
========================= */

.dropdown-menu,
.user-dropdown,
.profile-menu {
   /* background: linear-gradient(#4d008e, #4d008e, #75e2ff, #b84fff,#4d008e); */
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 14px;
    overflow: hidden;
}

/* ITEMS DEL DROPDOWN */
.dropdown-menu a,
.user-dropdown a,
.profile-menu a {
    background: transparent;
    color: #ffffff;
    transition: all 0.25s ease;
}

/* HOVER ITEMS */
.dropdown-menu a:hover,
.user-dropdown a:hover,
.profile-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #88f5c7;
}


/* =====================================================
DISTRIBUTION
===================================================== */

.distribution-section{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}



.distribution-wrapper{
    width:100%;
    max-width:1100px;
    margin:auto;
}

/* TITLE */

.distribution-main-title{
    text-align:center;
    color:white;
    font-size:30px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:35px;
}

/* TOTAL */

.distribution-total-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    margin-bottom:35px;
}

.distribution-label{
    color:white;
    font-size:30px;
    font-weight:700;
    white-space:nowrap;
}

.distribution-total{
    color:white;
    font-size:170px;
    font-weight:900;
    line-height:1;
}

/* CODE */

.distribution-code-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.distribution-code-input{
    width:360px;
    height:60px;
    border:none;
    border-radius:18px;
    padding:0 20px;
    font-size:22px;
    outline:none;
}

.distribution-redeem-btn{
    height:60px;
    padding:0 35px;
    border:none;
    border-radius:18px;
    background:#4dff4d;
    color:#ff00ff;
    font-size:22px;
    font-weight:800;
    transition:.2s;
}

.distribution-redeem-btn:hover{
    transform:scale(1.03);
}

/* SOCIALS */

.social-distribution-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:35px;
    justify-items:center;
    margin-bottom:40px;
}

.social-distribution-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.social-distribution-item img{
    width:85px;
    height:85px;
    object-fit:contain;
}

.social-distribution-item input{
    width:95px;
    height:55px;
    border:none;
    border-radius:12px;
    text-align:center;
    font-size:32px;
    font-weight:900;
    color:black;
}

/* REMAINING */

.remaining-tickets{
    text-align:center;
    color:white;
    font-size:42px;
    font-weight:900;
}

.remaining-tickets span{
    color:yellow;
}

/* RESPONSIVE */

@media(max-width:992px){

    .distribution-main-title{
        font-size:38px;
    }

    .distribution-total{
        font-size:110px;
    }

    .distribution-label{
        font-size:22px;
    }

    .social-distribution-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .distribution-total-wrapper{
        flex-direction:column;
        gap:10px;
    }

    .distribution-total{
        font-size:90px;
    }

    .distribution-main-title{
        font-size:30px;
    }

    .remaining-tickets{
        font-size:28px;
    }

}

.premios-section{
    padding:40px 0 60px;
}

.premios-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.premios-header h1{
    font-size:64px;
    font-weight:800;
    color:#fff;
    margin-bottom:0;
}

.premios-header p{
    color:#fff;
    font-size:28px;
    margin-bottom:30px;
}

.premios-grid{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
}

.premios-lista{
    min-width:600px;
}

.premio-item{
    color:#fff;
    font-size:32px;
    margin-bottom:0px;
}

.premio-item span{
    font-size:52px;
    font-weight:600;
    margin-right:10px;
}

.premios-imagen img{
    max-width:600px;
    width:100%;
}

.premios-texto{
    margin-top:30px;
    text-align:center;
    color:#fff;
    font-size:24px;
}
.premios-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    margin-top:30px;
}

.premios-logos img{
    height:60px;
    width:auto;
}

@media(max-width:991px){

    .premios-grid{
        flex-direction:column;
    }

    .premios-header{
        text-align:center;
    }

    .premios-lista{
        min-width:auto;
        text-align:center;
    }
}
/* ==========================================
   HERO TAKENOS
========================================== */

.takenos-hero{
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.takenos-hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.takenos-hero-overlay{
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;

    background: rgba(0,0,0,.35);
}

.takenos-hero-overlay h1{
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.takenos-hero-overlay p{
    color: #fff;
    font-size: 22px;
    max-width: 700px;
}

@media (max-width: 768px){

    .takenos-hero{
        height: 300px;
    }

    .takenos-hero-overlay h1{
        font-size: 34px;
    }

    .takenos-hero-overlay p{
        font-size: 18px;
    }

}