*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:
    linear-gradient(
    180deg,
    #210032 0%,
    #12001d 45%,
    #0a0012 100%
    );

    font-family:Arial, sans-serif;

    color:white;

    overflow-x:hidden;

    min-height:100vh;
}

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

    radial-gradient(
    circle at top right,
    rgba(168,85,247,.12),
    transparent 30%
    ),

    radial-gradient(
    circle at bottom left,
    rgba(147,51,234,.10),
    transparent 35%
    );

    pointer-events:none;

    z-index:-1;
}

/* ================= HEADER ================= */

header{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
    padding:16px 22px;
    background:linear-gradient(90deg,#240038,#12001d);
    border-bottom:1px solid rgba(255,255,255,.06);
    position:sticky;
    top:0;
    z-index:999;
}

/* ================= TABS ================= */

.tabs{
    display:flex;
    gap:10px;
    align-items:center;
}

.tab{

    background:
    linear-gradient(
    180deg,
    #2b0d42,
    #1b012b
    );

    border:
    1px solid rgba(168,85,247,.25);

    color:white;

    padding:10px 18px;

    border-radius:18px;

    cursor:pointer;

    transition:.25s;

    font-weight:600;

    box-shadow:
    0 0 10px rgba(0,0,0,.25);
}

.tab:hover{

    transform:
    translateY(-2px);

    background:
    linear-gradient(
    90deg,
    #7c3aed,
    #6d28d9
    );
}

.tab.active{

    background:
    linear-gradient(
    90deg,
    #9333ea,
    #7c3aed
    );

    border:
    1px solid rgba(255,255,255,.15);

    box-shadow:
    0 0 20px rgba(168,85,247,.55);
}

/* ================= SEARCH ================= */

.search{
    flex:1;
    max-width:380px;
}

.search input{

    width:100%;

    padding:14px 18px;

    border-radius:18px;

    border:
    1px solid rgba(168,85,247,.18);

    outline:none;

    background:
    linear-gradient(
    180deg,
    #f3f3f3,
    #dfdfdf
    );

    color:#111;

    font-size:15px;

    font-weight:600;
}

.search input::placeholder{
    color:#c9b5d8;
}

/* ================= PROVIDERS ================= */

.providers{
    display:flex;
    align-items:center;
}

.providers select{

    background:
    linear-gradient(
    180deg,
    #2b0d42,
    #1a0127
    );

    color:white;

    border:
    1px solid rgba(168,85,247,.2);

    padding:14px 18px;

    border-radius:18px;

    outline:none;

    cursor:pointer;

    font-weight:600;

    box-shadow:
    0 0 10px rgba(0,0,0,.25);
}

.providers select option{

    background:#1a0127;

    color:white;

    padding:12px;
}

/* ================= GRID ================= */

.grid{
    display:grid;
    gap:20px;
    padding:25px;
    grid-template-columns:
    repeat(auto-fill,minmax(220px,1fr));
}

/* ================= CARD ================= */

.card{

    background:
    linear-gradient(
    180deg,
    #220033,
    #160021
    );

    border-radius:24px;

    overflow:hidden;

    cursor:pointer;

    transition:.25s;

    position:relative;

    border:
    1px solid rgba(168,85,247,.12);

    box-shadow:
    0 0 18px rgba(0,0,0,.35);
}

.card:hover{

    transform:
    translateY(-6px)
    scale(1.02);

    box-shadow:
    0 0 28px rgba(168,85,247,.35);
}

.card img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
}

.card h4{
    padding:14px;
    font-size:16px;
    font-weight:600;
}

/* ================= FAVORITO ================= */

.badge{
    position:absolute;
    right:10px;
    top:10px;

    background:#facc15;
    color:black;

    font-weight:bold;

    border-radius:12px;

    padding:4px 8px;

    font-size:12px;
}

/* ================= FOOTER ================= */

footer{
    padding:30px;
    text-align:center;
    color:#c9b5d8;
    opacity:.8;
    font-size:13px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

    header{
        flex-direction:column;
        align-items:stretch;
    }

    .tabs{
        overflow:auto;
        padding-bottom:6px;
    }

    .search{
        max-width:100%;
    }

}

@media(max-width:600px){

    .grid{
        grid-template-columns:
        repeat(2,1fr);

        gap:14px;

        padding:14px;
    }

    .card img{
        height:130px;
    }

    .card h4{
        font-size:14px;
    }

}
/* ================= LOGO ================= */

.logo-area{

    display:flex;

    align-items:center;
}

.logo-area img{

    height:48px;

    width:auto;

    object-fit:contain;

    display:block;
}
/* =========================================
TOP HEADER PREMIUM FORTUNE LION
========================================= */

.top-header{
    min-height:150px;
    background:
    radial-gradient(circle at top left, rgba(255,184,28,.12), transparent 26%),
    linear-gradient(180deg,#07000e 0%,#120018 48%,#1a0028 100%);
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:start;
    gap:22px;
    padding:16px 26px 0;
    border-bottom:2px solid rgba(255,196,0,.55);
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 8px 24px rgba(0,0,0,.35);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:220px;
}

.logo-area img{
    height:88px;
    width:auto;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 0 14px rgba(255,190,40,.45));
}

.header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    padding-top:8px;
}

.login-btn{
    background:linear-gradient(180deg,#ffd95a 0%,#f6b81b 48%,#d98b00 100%);
    color:#1c1000;
    border:1px solid #fff0a8;
    padding:14px 36px;
    border-radius:24px;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    text-transform:uppercase;
    letter-spacing:.4px;
    box-shadow:0 0 18px rgba(255,196,0,.42), inset 0 1px 0 rgba(255,255,255,.45);
    transition:.25s;
}

.login-btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.08);
}

.lang-btn{
    width:64px;
    height:54px;
    border-radius:22px;
    border:1px solid rgba(255,220,120,.45);
    background:linear-gradient(180deg,#160019,#09000f);
    color:#ffe680;
    font-size:23px;
    cursor:pointer;
    box-shadow:inset 0 0 12px rgba(255,210,80,.08), 0 0 14px rgba(255,196,0,.16);
}

.main-menu{
    grid-column:1/-1;
    display:flex;
    justify-content:space-around;
    align-items:flex-end;
    gap:18px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:12px 0 10px;
    border-top:1px solid rgba(255,255,255,.04);
}

.main-menu::-webkit-scrollbar{
    display:none;
}

.main-menu a{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    gap:7px;
    min-width:118px;
    min-height:70px;
    color:#fff5c7;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    text-align:center;
    text-transform:uppercase;
    text-shadow:0 2px 4px rgba(0,0,0,.8);
    transition:.25s;
}

.main-menu a span{
    font-size:30px;
    line-height:1;
    filter:drop-shadow(0 0 6px rgba(255,210,80,.45));
}

.main-menu a:hover,
.main-menu a.active{
    color:#ffd95a;
}

.main-menu a.active::after,
.main-menu a:hover::after{
    content:"";
    position:absolute;
    left:12px;
    right:12px;
    bottom:-10px;
    height:4px;
    border-radius:10px 10px 0 0;
    background:linear-gradient(90deg,transparent,#ffd95a,transparent);
    box-shadow:0 0 14px rgba(255,196,0,.75);
}

/* ================= LOGIN MODAL ================= */

.login-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(6px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:18px;
}

.login-modal.show{
    display:flex;
}

.login-box{
    width:900px;
    max-width:92vw;
    min-height:430px;
    max-height:88vh;
    background:linear-gradient(90deg,#120006 0%,#210009 48%,#2a0010 100%);
    border-radius:22px;
    display:grid;
    grid-template-columns:42% 58%;
    overflow:hidden;
    position:relative;
    border:2px solid rgba(184,121,29,.75);
    box-shadow:0 0 40px rgba(255,170,0,.28), inset 0 0 35px rgba(255,120,0,.08);
}

.login-box::before{
    content:"";
    position:absolute;
    inset:10px;
    border:1px solid rgba(212,161,44,.35);
    border-radius:17px;
    pointer-events:none;
}

.login-close{
    position:absolute;
    top:14px;
    right:22px;
    background:none;
    border:none;
    color:#d4a12c;
    font-size:40px;
    line-height:1;
    cursor:pointer;
    z-index:5;
    text-shadow:0 0 10px rgba(255,180,0,.35);
}

.login-image{
    background:
    radial-gradient(circle at center, rgba(255,140,0,.24), transparent 58%),
    linear-gradient(180deg,#240006,#0b0002);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:26px;
    border-right:1px solid rgba(184,121,29,.45);
}

.login-image img{
    width:100%;
    max-width:340px;
    object-fit:contain;
    filter:drop-shadow(0 0 18px rgba(255,174,0,.55));
}

.login-form{
    padding:42px 48px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:rgba(38,0,12,.56);
}

.login-form h2{
    font-size:42px;
    margin-bottom:30px;
    color:#ffe680;
    text-align:center;
    font-family:Georgia, 'Times New Roman', serif;
    text-shadow:0 0 12px rgba(255,174,0,.25);
}

.login-form label{
    color:#ffe680;
    font-weight:800;
    margin-bottom:10px;
    font-size:16px;
}

.login-form label span{
    color:#ff3b6b;
}

.login-form input{
    width:100%;
    background:linear-gradient(180deg,#4b001d,#24000d);
    border:1.5px solid #d4a12c;
    outline:none;
    color:white;
    padding:16px 22px;
    border-radius:22px;
    margin-bottom:24px;
    font-size:15px;
    box-shadow:inset 0 0 18px rgba(255,0,120,.14);
}

.login-form input::placeholder{
    color:rgba(255,255,255,.42);
}

.password-box{
    position:relative;
}

.password-box input{
    padding-right:55px;
}

.password-box span{
    position:absolute;
    right:22px;
    top:15px;
    font-size:18px;
    color:#ffe680;
}

.login-submit{
    background:linear-gradient(90deg,#5b2bcc,#d4148c);
    color:#ffe680;
    border:1.5px solid #d4a12c;
    padding:16px;
    border-radius:22px;
    font-weight:900;
    font-size:17px;
    cursor:pointer;
    box-shadow:0 0 18px rgba(255,0,140,.35);
}

@media(max-width:768px){

    .login-box{
        grid-template-columns:1fr;
        width:92vw;
        max-height:92vh;
        overflow:auto;
    }

    .login-image{
        padding:18px;
        min-height:180px;
        border-right:none;
        border-bottom:1px solid rgba(184,121,29,.35);
    }

    .login-image img{
        max-width:180px;
    }

    .login-form{
        padding:28px;
    }

    .login-form h2{
        font-size:32px;
        margin-bottom:22px;
    }

}
