html,
body{
    margin:0;
    padding:0;
    width:100%;
    min-height:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

html{

background:
linear-gradient(
180deg,
#6d37d5 0%,
#4d008e 35%,
#75e2ff 70%,
#6d37d5 100%
);

background-size:100% 2000px;
background-repeat:repeat-y;

}

body{

    min-height:100vh;

    background:transparent;

    color:#fff;

    font-family:Arial, Helvetica, sans-serif;

}

/* ======================================================
   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{
    max-width:100%;
    object-fit:contain;
}

.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:4px;

    text-align:center;

    color:white;

    padding:0px;
}

.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:10px;
    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;
}

/*======================================================
BOTONES VERDES
======================================================*/

.redeem-btn,
.navbar-login-btn{

    border:none;

    border-radius:15px;

    background:#39ff5a;

    color:#000;

    font-weight:700;

    transition:.25s;

}

.redeem-btn:hover,
.navbar-login-btn:hover{

    background:#2fff50;

    color:#000;

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(57,255,90,.35);

}

.redeem-btn{

    margin-top:20px;

    width:100%;

    padding:15px;

}

.navbar-login-btn{

    padding:15px 28px;

}

.distribution-code-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}
.dashboard-code-input{
    max-width:250px;
    margin:0;
}
.dashboard-redeem-btn{
    width:200px;
    margin:0;
}

.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{

    background:#6a2bb8;

    color:#ffffff;

    font-size:20px;

    line-height:1.8;

    font-weight:500;

    padding:26px;

    border-radius:18px;
     text-shadow:
        0 1px 3px rgba(0,0,0,.35);
        
         max-width:95%;

    margin:auto;

}

.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 */

@media (min-width:992px){

.home-style-navbar .navbar-collapse{

    display:flex !important;

    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{

    display: inline-flex;

    align-items: center;

    border-radius: 50px;

}

.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;
    }

}
.navbar-menu {
    /* Quitamos flex:1 para que no ocupe todo el ancho */
    flex: 0 1 auto;           /* o simplemente no pongas flex */
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;                /* puedes ajustar la separación entre enlaces */
    
    /* Fondo blanco con bordes redondeados (opcional) */
    background: #ffffff;
    padding: 10px 28px;       /* espacio interior alrededor de los enlaces */
    border-radius: 50px;      /* hace que parezca una "píldora" */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* sombra suave para destacar */
    
    /* Centrado horizontal dentro del topbar */
    margin: 0 auto;           /* esto centra el menú en el espacio disponible */
}

.navbar-menu a{
    color:#1a1a1a;
    text-decoration:none;
    font-weight:600;
    transition:.2s;
}

.navbar-menu a:hover{
    color:#9cff57;
}

/* ===========================================================
   PERFIL DE USUARIO
===========================================================*/

.profile-card{

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:40px;

    box-shadow:0 10px 35px rgba(0,0,0,.35);

    border:1px solid rgba(255,255,255,.05);

    margin-bottom:35px;

}

.profile-avatar-wrapper{

    position:relative;

    display:inline-block;

}

.profile-avatar{

    width:170px;

    height:170px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #28a745;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.45);

}

.profile-avatar:hover{

    transform:scale(1.03);

}

.change-photo-btn{

    position:absolute;

    left:50%;

    bottom:-15px;

    transform:translateX(-50%);

    background:#28a745;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    cursor:pointer;

    font-size:13px;

    transition:.3s;

    white-space:nowrap;

}

.change-photo-btn:hover{

    background:#198754;

}

.profile-name{

    color:#fff;

    font-size:32px;

    font-weight:bold;

    margin-top:35px;

}

.profile-member{

    color:#b8b8b8;

    font-size:15px;

}

.profile-divider{

    border-color:rgba(255,255,255,.08);

    margin:35px 0;

}

.profile-stat{

    background:#292929;

    border-radius:15px;

    padding:25px;

    transition:.3s;

}

.profile-stat:hover{

    transform:translateY(-4px);

    background:#303030;

}

.profile-stat h4{

    color:#28a745;

    font-weight:bold;

    margin-bottom:10px;

    word-break:break-word;

}

.profile-stat span{

    color:#cfcfcf;

    font-size:14px;

}

.profile-section{

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    border:1px solid rgba(255,255,255,.05);

}

.profile-section-title{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}

.profile-input{

    background:#2d2d2d !important;

    border:1px solid #3b3b3b;

    color:white !important;

    border-radius:12px;

    min-height:50px;

}

.profile-input:focus{

    background:#333 !important;

    color:white !important;

    border-color:#28a745;

    box-shadow:0 0 0 .2rem rgba(40,167,69,.25);

}

.profile-input::placeholder{

    color:#8b8b8b;

}

.input-group-text{

    background:#28a745;

    color:white;

    border:none;

    border-radius:12px 0 0 12px;

    font-weight:bold;

}

.form-label{

    color:white;

    font-weight:600;

}

.btn-success{

    border-radius:40px;

    padding:12px 45px;

    font-weight:bold;

    transition:.3s;

}

.btn-success:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(40,167,69,.35);

}

.alert{

    border-radius:14px;

}

@media(max-width:991px){

.profile-card{

padding:25px;

}

.profile-section{

padding:20px;

}

.profile-avatar{

width:130px;

height:130px;

}

.profile-avatar img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.profile-name{

font-size:26px;

}

}

@media(max-width:576px){

.profile-stat{

margin-bottom:20px;

}

.profile-section-title{

font-size:20px;

}

.change-photo-btn{

font-size:12px;

padding:6px 14px;

}

.btn-success{

width:100%;

}

}

/*==============================
FOTO DEL NAVBAR
===============================*/

.navbar-profile-image{

    width:38px;

    height:38px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid rgba(255,255,255,.25);

    transition:.25s;

}

.navbar-user-btn{

    display:flex;

    align-items:center;

    gap:10px;

    border-radius:50px;

    padding:6px 14px;

}

.navbar-user-btn:hover .navbar-profile-image{

    transform:scale(1.08);

    border-color:#ffffff;

}

.subscriber-badge{

    width:70px;
    height:auto;

    margin-left:8px;

    vertical-align:middle;

}
.subscriber-badge-admin{

    width:70px;

    height:auto;

    margin-left:6px;

    vertical-align:middle;

}
/*==================================================
ADMIN PANEL
==================================================*/

.admin-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.admin-stat-card{

    background:rgba(255,255,255,.2);

    border-radius:18px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.25s;

    height:100%;

}

.admin-stat-card:hover{

    transform:translateY(-6px);

}

.stat-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

}

.admin-stat-card small{

    display:block;

    color:#888;

    font-weight:600;

    margin-bottom:5px;

}

.admin-stat-card h3{

    margin:0;

    font-size:30px;

    font-weight:700;

}

/*==========================================
USUARIOS ADMIN
==========================================*/

.user-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 20px;

    border-radius:16px;

    background:white;

    border:1px solid #ececec;

    transition:.25s;

}

.user-card:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.user-left{

    display:flex;

    align-items:center;

    gap:18px;

}

.user-avatar{

    width:58px;

    height:58px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #00C853;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.user-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.ticket-box{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:linear-gradient(135deg,#198754,#28a745);

    color:white;

    padding:10px 18px;

    border-radius:50px;

    font-weight:bold;

    font-size:18px;

    box-shadow:0 6px 15px rgba(25,135,84,.25);

}

.ticket-box span{

    background:#FFC107;

    color:#000;

    padding:3px 8px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

}

.user-name-link{

    color:#212529;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.2s;

}

.user-name-link:hover{

    color:#0d6efd;

}
.users-container{

    background:transparent;

}

.users-header{

    margin-bottom:25px;

}

.users-list{

    display:flex;

    flex-direction:column;

    gap:4px;

}

.admin-left-panel{

    position:sticky;

    top:20px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border-radius:22px;

    padding:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.admin-actions h5{

    font-size:15px;

    font-weight:700;

    color:#666;

    text-transform:uppercase;

    letter-spacing:1px;

}

.admin-actions hr{

    margin:20px 0;

}

/* ======================================================
   MOBILE OPTIMIZATION
====================================================== */

@media (max-width:768px){

.hero-new h1{

    font-size:30px;

    line-height:1.2;

    padding:0 15px;

}

}

@media (max-width:768px){

.image-box img{

    height:140px !important;

}

.character-box img{

    height:200px !important;

}

.trophy-img{

    height:110px;

}

}

@media (max-width:768px){

.ticket-card{

    padding:20px;

}

.ticket-total{

    font-size:45px;

}

}

@media (max-width:768px){

.ranking-box{

    padding:15px;

}

.ranking-table td{

    padding:10px;

    font-size:14px;

}

.ranking-header h2{

    font-size:20px;

}

}

@media (max-width:768px){

.sponsor-box2 h2{

    font-size:24px;

}

.sponsor-box2 p{

    font-size:15px;

}

}

@media (max-width:768px){

.winner-section h2{

    font-size:28px;

}

.winner-section h3{

    font-size:28px;

}

}

@media (max-width:768px){

.custom-faq .accordion-button{

    font-size:28px;

    font-weight:800;

    color:#7b2cff;

}

.custom-faq .accordion-body{

    padding:18px;

    font-size:15px;

}

}

/*=====================================================
HEADER RESPONSIVE
======================================================*/

@media (max-width:991px){

    /* Navbar */
    .home-style-navbar{

        padding:8px 0;

    }

    .navbar-wrapper{

        padding:0 15px;

    }

    /* Logo */

    .navbar-logo img{

        height:48px;

    }

    /* Collapse */

    .home-style-navbar .navbar-collapse{

        margin-top:15px;

        padding:15px;

        border-radius:18px;

        background:rgba(0,0,0,.25);

        backdrop-filter:blur(12px);

    }

    /* Buscador */

    .navbar-center-search{

        width:100%;

        margin-bottom:15px;

        padding:0;

    }

    .navbar-center-search .position-relative{

        max-width:100%;

    }

    /* Parte derecha */

    .navbar-right-section{

        width:100%;

        justify-content:center;

        gap:12px;

        flex-wrap:wrap;

    }

    /* Botón usuario */

    .navbar-user-btn{

        width:100%;

        justify-content:center;

    }

    /* Tickets */

    .navbar-ticket{

        width:100%;

        text-align:center;

    }

    /* Botón login */

    .navbar-login-btn{

        width:100%;

    }

}

@media (max-width:576px){

    .navbar-logo img{

        height:42px;

    }

    .navbar-search-input{

        height:42px;

        font-size:14px;

    }

    .navbar-profile-image{

        width:34px;

        height:34px;

    }

    .navbar-ticket{

        font-size:14px;

        padding:10px;

    }

}

@media (max-width:991px){

    .home-style-navbar .navbar-collapse{
        flex-basis:100%;
    }

    .navbar-menu{
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        margin:0 0 12px;
        padding:8px;
        border-radius:20px;
    }

    .navbar-menu a{
        width:100%;
        padding:12px 16px;
        border-radius:12px;
        text-align:center;
    }

    .navbar-menu a:hover{
        background:rgba(0,0,0,.06);
    }

}

@media (max-width:768px){

    .user-card{
        flex-direction:column;
        align-items:stretch;
        gap:16px;
        padding:16px;
    }

    .user-left{
        min-width:0;
        gap:12px;
    }

    .user-name-link{
        overflow-wrap:anywhere;
    }

    .user-right{
        width:100%;
        justify-content:space-between;
        gap:12px;
    }

    .user-right .text-end{
        display:flex;
        align-items:center;
        gap:8px;
        margin-right:0 !important;
        text-align:left !important;
    }

    .ticket-box{
        padding:8px 12px;
        font-size:16px;
    }

    .admin-tickets-table{
        width:100%;
        border-radius:12px;
    }

}
/*==================================
MENU MOVIL NUEVO
==================================*/

.mobile-user-menu{

    display:flex;

    flex-direction:column;

    width:100%;

    margin-top:20px;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:20px;

}

.mobile-user-menu a{

    color:white;

    text-decoration:none;

    font-size:18px;

    padding:12px 10px;

    border-radius:12px;

    transition:.2s;

}

.mobile-user-menu a:hover{

    background:rgba(255,255,255,.08);

}

@media(min-width:992px){

.mobile-user-menu{

display:none;

}

}

.kick-ticket-box{

    width:90px;
    height:55px;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    background:#fff;
    color:#000;

    border-radius:12px;

    font-size:28px;
    font-weight:900;

}

.kick-x2{

    position:absolute;

    top:-8px;
    right:-8px;

    background:#39ff5a;
    color:#000;

    padding:2px 8px;

    border-radius:20px;

    font-size:12px;

    font-weight:bold;

}
.auth-link{

    color:#75e2ff;

    text-decoration:none;

    font-weight:bold;

}

.auth-link:hover{

    text-decoration:underline;

}

.auth-register-link{

    color:#ffffff;

    font-weight:bold;

    text-decoration:underline;

}



