/* ============================================================
   RESET
============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background: #08070f;
    color: #f5f1f7;
}

a {
    text-decoration: none;
}

/* ============================================================
   AUTH PAGE
============================================================ */

.auth-page {
    min-height: 100vh;
}

/* ============================================================
   LAYOUT
============================================================ */

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(320px, 520px) 1fr;
}

/* ============================================================
   LEFT PANEL
============================================================ */

.auth-panel {
    background: #111016;
    border-right: 1px solid rgba(247, 200, 91, 0.25);
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================================
   BRAND
============================================================ */

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 46px;
    width: fit-content;
}

.auth-brand img {
    width: 62px;
    height: auto;
}

.auth-brand span {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, #f7c85b, #d39580, #7f42b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================================
   HEADING
============================================================ */

.auth-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #c779bd;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-heading h1 {
    color: #f7c85b;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 900;
}

.auth-heading p {
    margin-top: 18px;
    color: #d8d2dc;
    font-size: 17px;
    line-height: 1.6;
}

/* ============================================================
   FORM
============================================================ */

.auth-form {
    margin-top: 34px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #f7c85b;
    font-size: 14px;
    font-weight: 800;
}

.auth-form input,
.auth-form textarea,
.auth-form select,
input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid rgba(247, 200, 91, 0.35);
    background: #201b24;
    color: #f5f1f7;
    font-size: 16px;
    font-weight: 500;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.auth-form input::placeholder,
textarea::placeholder {
    color: #8f879b;
}

.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #f7c85b;
    background: #241f29;
    box-shadow:
        0 0 0 3px rgba(247, 200, 91, 0.10),
        0 10px 24px rgba(0,0,0,.22);
}
/* ============================================================
   PROFILE ROLES
============================================================ */

.profile-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.profile-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
    border: 1px solid currentColor;
}

/* Creator */

.role-creator {
    background: rgba(247, 200, 91, 0.12);
    color: #f7c85b;
    border-color: rgba(247, 200, 91, 0.45);
}

/* Genius */

.role-genius {
    background: rgba(192, 132, 252, 0.12);
    color: #c084fc;
    border-color: rgba(192, 132, 252, 0.45);
}

/* Admin */

.role-admin {
    background: rgba(255, 77, 109, 0.12);
    color: #ff4d6d;
    border-color: rgba(255, 77, 109, 0.45);
}
/* ============================================================
   SURPRISE COUNTDOWN
============================================================ */

.surprise-countdown {
    display: block;
    margin-top: 18px;
    margin-bottom: 18px;
    color: #f7c85b;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    text-align: center;
    letter-spacing: -1px;
   
}

.surprise-countdown-expired {
    color: #ff4d6d;
   
}
header img{
    width: 3rem;
    margin-right: 1rem;
    
}
.logoNavSuperior{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 15rem;
}
/* ============================================================
   BUTTON
============================================================ */

.auth-btn,
.btn {
    width: 100%;
    padding: 15px 20px;
    margin-top: 6px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #f0bd3f, #b775a8, #7f42b0);
    color: #111016;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}

.auth-btn:hover,
.btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
/*==========================================================*/


/* ============================================================
   REGISTER CTA
============================================================ */

.auth-register-cta {
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(247, 200, 91, 0.08);
    border: 1px solid rgba(247, 200, 91, 0.24);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.auth-register-cta span {
    color: #d8d2dc;
    font-size: 14px;
    font-weight: 700;
}

.auth-register-cta a {
    color: #f7c85b;
    font-size: 14px;
    font-weight: 900;
}

.auth-register-cta a:hover {
    color: #ffcf67;
}

/* ============================================================
   LINKS
============================================================ */

.auth-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.auth-links a {
    color: #d8d2dc;
    font-size: 14px;
    font-weight: 700;
}

.auth-links a:hover {
    color: #f7c85b;
}

/* ============================================================
   RIGHT SIDE
============================================================ */

.auth-side {
    position: relative;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(8, 7, 15, 0.5), rgba(8, 7, 15, 0.75)),
        radial-gradient(circle at 30% 20%, rgba(247, 200, 91, 0.16), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(127, 66, 176, 0.2), transparent 35%),
        #08070f;
}

.auth-side::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 24px;
    border: 1px solid rgba(247, 200, 91, 0.28);
    pointer-events: none;
}

/* ============================================================
   CAROUSEL
============================================================ */

.landing-carousel {
    position: relative;
    z-index: 2;
    width: min(100%, 860px);
    overflow: hidden;
}

.landing-carousel-track {
    display: flex;
    transition: transform .5s ease;
}

.landing-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

/* ============================================================
   SLIDE IMAGE
============================================================ */

.landing-slide img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 22px;
    border: 6px solid #f0bd3f;
    box-shadow: 0 22px 46px rgba(0,0,0,.42);
    margin-bottom: 20px;
    display: block;
}

/* ============================================================
   SLIDE COPY
============================================================ */

.landing-slide-copy {
    text-align: left;
}

.landing-slide-copy span {
    display: inline-block;
    margin-bottom: 10px;
    color: #a27ae8;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.landing-slide-copy h2 {
    font-size: 34px;
    line-height: 1.08;
    font-weight: 900;
    background: linear-gradient(90deg, #f7c85b, #d39580, #7f42b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-slide-copy p {
    margin-top: 16px;
    color: #d8d2dc;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.landing-slide-copy ul {
    margin: 16px 0;
    padding-left: 22px;
}

.landing-slide-copy li {
    margin-bottom: 8px;
    color: #d8d2dc;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.landing-slide-copy strong {
    display: block;
    margin-top: 16px;
    color: #f7c85b;
    font-size: 20px;
    line-height: 1.4;
}

/* ============================================================
   SECTION CREATED
============================================================ */

.section {
    padding: 40px 20px;
}

.card {
    max-width: 1200px;
    margin: 0 auto;
}

.card h3 {
    margin-bottom: 30px;
    color: #f7c85b;
    font-size: 34px;
    text-align: center;
}

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

#created_surprises_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

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

.surprise-card {
    position: relative;
    overflow: visible;
    background: #15131b;
    border: 1px solid rgba(247, 200, 91, 0.5);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    -min-height: 350px;
    height: 600px;
    transition: .25s ease;
}

.surprise-card:hover {
    transform: translateY(-4px);
    border-color: #f7c85b;
}

.surprise-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0px 0px;
}


.surprise-card h4 {
    
    color: #f7c85b;
    font-size: 24px;
    line-height: 1.2;
    margin: 20px 12px 12px 12px;
}

.surprise-card p {
    color: #d8d2dc;
    line-height: 1.5;
    margin-bottom: 10px;
    justify-self: center;
}

.surprise-meta {
    margin-top: auto;
    display: grid;
    gap: 8px;
    -padding: 20px;
    
}

.surprise-meta strong {
    color: #b775a8;
}

.surprise-status {
    position: absolute;
    margin-top: 190px;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: #12351f;
    color: #4ade80;
    border: 1px solid currentColor;
}

.surprise-card-featured::after {
    content: "CREACIÓN ESTRELLA";
    position: absolute;
    margin-top: 190px;
    top: 16px;
    right: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7c85b, #ff9f1c);
    color: #111016;
    font-size: 11px;
    font-weight: 900;
}
.surprise-card .urgent-icon{
    position:absolute;
    top:-18px;
    left:-18px;
    width:120px;
    height:auto;
    z-index:30;
    pointer-events:none;
    transform:rotate(-12deg);
    filter:drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

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

@media (max-width: 980px) {

    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-panel {
        border-right: none;
        padding: 30px 20px;
    }

    .auth-side {
        padding: 0 20px 30px;
    }

    .auth-side::before {
        display: none;
    }

    .landing-carousel {
        max-width: 520px;
    }

    .landing-slide img {
        height: 240px;
        border-width: 4px;
    }

    .landing-slide-copy h2 {
        font-size: 26px;
    }

    .landing-slide-copy p,
    .landing-slide-copy li {
        font-size: 14px;
    }
}

@media (max-width: 600px) {

    .auth-brand {
        margin-bottom: 30px;
    }

    .auth-brand img {
        width: 52px;
    }

    .auth-brand span {
        font-size: 20px;
    }

    .auth-heading h1 {
        font-size: 30px;
    }

    .auth-heading p {
        font-size: 15px;
    }

    .auth-register-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-slide img {
        height: 180px;
    }

    .landing-slide-copy ul {
        display: none;
    }

    .landing-slide-copy h2 {
        font-size: 22px;
    }

    .landing-slide-copy strong {
        font-size: 16px;
    }
}
/* ============================================================
   SURPRISER APP DASHBOARD V2
   Añade este bloque al final de css/style.css
   ============================================================ */

.app-dashboard {
    background: #0b0912;
    color: #f5f1f7;
    text-align: left;
}

.app-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    background: rgba(17, 16, 22, 0.94);
    border-bottom: 1px solid rgba(247, 200, 91, 0.32);
    backdrop-filter: blur(14px);
}

.app-logo {
    border: 0;
    background: linear-gradient(90deg, #f7c85b, #d39580, #7f42b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
}

.app-menu {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.app-menu button,
.top-pill {
    border: 1px solid rgba(247, 200, 91, 0.35);
    background: #17131d;
    color: #f5f1f7;
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.app-menu button:hover,
.top-pill:hover {
    border-color: #f7c85b;
    color: #f7c85b;
}

.app-top-actions {
    display: flex;
    gap: 8px;
}

.app-shell {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: calc(100vh - 70px);
}

.user-rail {
    padding: 22px;
    border-right: 1px solid rgba(247, 200, 91, 0.18);
}

.rail-card,
.app-card {
    background: #15131b;
    border: 1px solid rgba(247, 200, 91, 0.42);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.rail-avatar {
    width: 116px;
    height: 116px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f7c85b;
    display: block;
    margin-bottom: 16px;
}

.rail-card h2 {
    margin: 10px 0 4px;
    color: #f7c85b;
}

.rail-card p {
    color: #d8d2dc;
}

.rail-btn {
    width: 100%;
    margin: 14px 0 0;
}

.profile-editor {
    margin-top: 18px;
}

.app-content {
    padding: 28px;
}

.app-section {
    margin-top: 0;
}

.section-head {
    margin-bottom: 22px;
}

.section-head span,
.genius-hero span {
    color: #b775a8;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
}

.section-head h1,
.genius-hero h1 {
    margin: 6px 0 0;
    color: #f7c85b;
    font-size: 34px;
}

.surprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
}

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.creator-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 22px;
}

.form-preview {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}

.card-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    padding: 0px 20px 20px 20px;
}

.card-actions .btn {
    width: auto;
    min-width: 110px;
    margin: 0;
    font-size: 14px;
}

.btn-danger {
    background: #3f111c !important;
    color: #ff8aa0 !important;
    border: 1px solid #ff4d6d !important;
}

.btn-ghost {
    background: transparent !important;
    color: #f7c85b !important;
    border: 1px solid #f7c85b !important;
}

.genius-section {
    --gold: #f7c85b;
}

.genius-hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(247, 200, 91, 0.58);
    background: linear-gradient(135deg, rgba(247, 200, 91, 0.16), rgba(127, 66, 176, 0.08)), #15131b;
}

.skill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-pill {
    border: 1px solid rgba(247, 200, 91, 0.45);
    border-radius: 999px;
    padding: 8px 11px;
    color: #f5f1f7;
    background: rgba(247, 200, 91, 0.08);
    font-weight: 800;
}

.golden-grid .surprise-card {
    border-color: rgba(247, 200, 91, 0.9);
}

.genius-columns,
.shopping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.mini-list {
    display: grid;
    gap: 10px;
}

.mini-item {
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 12px;
    background: #201b24;
    border: 1px solid rgba(247, 200, 91, 0.22);
}

.mini-item strong {
    color: #f7c85b;
}

.purchase-card {
    min-height: 140px;
    border: 1px solid rgba(247, 200, 91, 0.45);
    border-radius: 18px;
    background: #15131b;
    color: #f5f1f7;
    padding: 20px;
    text-align: left;
    cursor: pointer;
}

.purchase-card strong {
    display: block;
    color: #f7c85b;
    font-size: 28px;
}

.purchase-card span {
    color: #d8d2dc;
}

.purchase-card.premium {
    background: linear-gradient(135deg, rgba(247, 200, 91, 0.18), rgba(127, 66, 176, 0.18)), #15131b;
}

.app-output {
    display: none;
}

@media (max-width: 980px) {
    .app-shell,
    .creator-layout {
        grid-template-columns: 1fr;
    }

    .user-rail {
        border-right: 0;
        padding-bottom: 0;
    }

    .app-topbar {
        grid-template-columns: 1fr;
    }

    .app-menu,
    .app-top-actions {
        justify-content: flex-start;
    }

    .genius-hero {
        grid-template-columns: 1fr;
    }
}






/* ============================================================
   DASHBOARD FIX FULL WIDTH + PROFILE TOP AVATAR
   AÑADE ESTO AL FINAL DEL CSS
============================================================ */

/* ============================================================
   FULL LAYOUT
============================================================ */

.app-shell.full-layout{
    display:block;
    width:100%;
    min-height:calc(100vh - 78px);
}

.full-width-content{
    width:100%;
    max-width:100%;
    padding:28px;
}

/* ============================================================
   TOPBAR
============================================================ */

.app-topbar{
    position:sticky;
    top:0;
    z-index:100;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:16px 24px;
    background:rgba(17,16,22,.96);
    border-bottom:1px solid rgba(247,200,91,.22);
    backdrop-filter:blur(16px);
}

.app-menu{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.app-top-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

/* ============================================================
   TOP AVATAR
============================================================ */

.top-avatar-btn{
    width:54px;
    height:54px;
    border:none;
    background:transparent;
    padding:0;
    cursor:pointer;
    border-radius:50%;
    overflow:hidden;
    transition:.2s ease;
}

.top-avatar-btn:hover{
    transform:scale(1.06);
}

.top-avatar{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #f7c85b;
    display:block;
}

/* ============================================================
   PROFILE SECTION
============================================================ */

.profile-layout{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:24px;
    align-items:start;
}

.profile-card-large{
    position:sticky;
    top:100px;
    text-align:center;
    overflow:hidden;
}

.profile-avatar-large{
    width:170px;
    height:170px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #f7c85b;
    display:block;
    margin:0 auto 22px auto;
}

.profile-card-large h2{
    margin-top:18px;
    color:#f7c85b;
    font-size:32px;
    line-height:1.1;
}

.profile-card-large #profile_username{
    margin-top:8px;
    color:#b775a8;
    font-size:16px;
    font-weight:800;
}

.profile-card-large #profile_bio{
    margin-top:18px;
    color:#d8d2dc;
    line-height:1.6;
    font-size:15px;
}

/* ============================================================
   PROFILE ROLES
============================================================ */

.profile-roles{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:12px;
}

.profile-role{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.4px;
    text-transform:uppercase;
    border:1px solid currentColor;
}

.role-creator{
    background:rgba(247,200,91,.12);
    color:#f7c85b;
    border-color:rgba(247,200,91,.45);
}

.role-genius{
    background:rgba(192,132,252,.12);
    color:#c084fc;
    border-color:rgba(192,132,252,.45);
}

.role-admin{
    background:rgba(255,77,109,.12);
    color:#ff4d6d;
    border-color:rgba(255,77,109,.45);
}

/* ============================================================
   PROFILE EDITOR
============================================================ */

.profile-editor-large{
    width:100%;
}

.profile-editor-large h3{
    margin-bottom:24px;
    color:#f7c85b;
    font-size:28px;
}

.profile-editor-large label{
    display:block;
    margin-bottom:8px;
    color:#f7c85b;
    font-size:14px;
    font-weight:800;
}

.profile-editor-large input,
.profile-editor-large textarea,
.profile-editor-large select{
    width:100%;
    padding:14px 16px;
    margin-bottom:18px;
    border-radius:14px;
    border:1px solid rgba(247,200,91,.35);
    background:#201b24;
    color:#f5f1f7;
    font-size:16px;
}

.profile-editor-large textarea{
    min-height:140px;
    resize:vertical;
}

/* ============================================================
   CONTENT
============================================================ */

.app-content{
    width:100%;
    max-width:100%;
}

.app-section{
    width:100%;
}

.section-head{
    margin-bottom:26px;
    margin-top: 2rem;
}

.section-head span{
    display:block;
    margin-bottom:10px;
    color:#b775a8;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.section-head h1{
    color:#f7c85b;
    font-size:38px;
    line-height:1.1;
}

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

.surprise-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:24px;
}

.compact-grid{
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
}

/* ============================================================
   CREATOR LAYOUT
============================================================ */

.creator-layout{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:24px;
    align-items:start;
}

/* ============================================================
   CARDS
============================================================ */

.app-card,
.surprise-card{
    background:#15131b;
    border:1px solid rgba(247,200,91,.38);
    border-radius:22px;
    box-shadow:0 18px 40px rgba(0,0,0,.32);
}

.app-card{
    padding:22px;
}

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

.surprise-card{
    position:relative;
    overflow:visible;
    display:flex;
    flex-direction:column;
    min-height:540px;
    transition:.22s ease;
}

.surprise-card:hover{
    transform:translateY(-5px);
    border-color:#f7c85b;
}

.surprise-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:22px 22px 0 0;
}

.surprise-card h4{
    margin:20px 18px 12px;
    color:#f7c85b;
    font-size:26px;
    line-height:1.2;
}

.surprise-meta{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:auto;
    padding:0 18px 20px;
}

.surprise-meta p{
    color:#d8d2dc;
    line-height:1.5;
}

/* ============================================================
   STATUS
============================================================ */

.surprise-status {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
    background: rgba(18,53,31,.92);
    color: #4ade80;
    border: 1px solid rgba(74,222,128,.45);
    backdrop-filter: blur(10px);
    z-index: 15;
}


/* ============================================================
   FEATURED
============================================================ */

.surprise-card-featured::after {
    content: "CREACIÓN ESTRELLA";
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #f7c85b,
        #ff9f1c
    );
    color: #111016;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .5px;
    box-shadow:
        0 8px 18px rgba(0,0,0,.28);
    z-index: 15;
}

/* ============================================================
   URGENT ICON
============================================================ */

.surprise-card .urgent-icon{
    position:absolute;
    top:-22px;
    left:-22px;
    width:120px;
    height:auto;
    z-index:50;
    transform:rotate(-12deg);
    filter:drop-shadow(0 8px 18px rgba(0,0,0,.4));
    pointer-events:none;
}

/* ============================================================
   COUNTDOWN
============================================================ */

.surprise-countdown{
    display:block;
    margin-top:10px;
    color:#f7c85b;
    font-size:36px;
    line-height:1;
    font-weight:900;
    letter-spacing:-1px;
    text-align:center;
}

.surprise-countdown-expired{
    color:#ff4d6d;
}

/* ============================================================
   BUTTONS
============================================================ */

.btn{
    width:100%;
    padding:15px 18px;
    border:none;
    border-radius:14px;
    background:linear-gradient(90deg,#f0bd3f,#b775a8,#7f42b0);
    color:#111016;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    transition:.2s ease;
}

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

.card-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding:0 18px 20px;
}

.card-actions .btn{
    width:auto;
    min-width:120px;
    margin:0;
}

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

@media (max-width:1100px){

    .profile-layout,
    .creator-layout{
        grid-template-columns:1fr;
    }

    .profile-card-large{
        position:relative;
        top:auto;
    }
}

@media (max-width:760px){

    .app-topbar{
        flex-direction:column;
        align-items:flex-start;
    }

    .app-menu,
    .app-top-actions{
        width:100%;
        flex-wrap:wrap;
    }

    .full-width-content{
        padding:18px;
    }

    .surprise-grid{
        grid-template-columns:1fr;
    }

    .section-head h1{
        font-size:30px;
    }

    .profile-avatar-large{
        width:130px;
        height:130px;
    }

    .surprise-card{
        min-height:auto;
    }

    .surprise-card .urgent-icon{
        width:90px;
        top:-16px;
        left:-16px;
    }
}
/* =========================================================
CREATOR HERO
========================================================= */

.creator-dashboard {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.creator-hero {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: center;
    padding: 34px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at top left,
        rgba(247,200,91,.18),
        transparent 35%),
        radial-gradient(circle at bottom right,
        rgba(127,66,176,.22),
        transparent 38%),
        #15131b;

    border: 1px solid rgba(247,200,91,.28);
}

.creator-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(247,200,91,.12);
    color: #f7c85b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 18px;
}

.creator-hero-content h1 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 900;
}

.creator-hero-content p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    color: #d8d2dc;
}

.creator-main-btn {
    margin-top: 28px;
    border: none;
    border-radius: 18px;
    padding: 18px 28px;
    background: linear-gradient(90deg,#f7c85b,#d39580,#7f42b0);
    color: #111016;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s ease;
}

.creator-main-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.08);
}

/* =========================================================
HERO VISUAL
========================================================= */

.creator-demo-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(247,200,91,.35);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

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

.creator-demo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
        rgba(8,7,15,.95),
        rgba(8,7,15,.2));
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
}

.demo-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}

.demo-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f7c85b;
    color: #111016;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.demo-step p {
    color: #fff;
    font-weight: 700;
}

/* =========================================================
CREATE SECTION
========================================================= */

.create-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start;
}

.create-card-modern {
    padding: 34px;
    border-radius: 28px;
    background: #15131b;
    border: 1px solid rgba(247,200,91,.3);
}

.create-header {
    margin-bottom: 28px;
}

.create-header span {
    color: #b775a8;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
}

.create-header h2 {
    margin-top: 10px;
    font-size: 42px;
    color: #f7c85b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #f7c85b;
    font-weight: 800;
}

.create-submit-btn {
    margin-top: 18px;
    height: 60px;
    font-size: 18px;
}

/* =========================================================
SIDE PANEL
========================================================= */

.create-side-panel {
    position: sticky;
    top: 100px;
}

.side-preview-card {
    overflow: hidden;
    border-radius: 28px;
    background: #15131b;
    border: 1px solid rgba(247,200,91,.28);
}

.side-preview-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.side-preview-content {
    padding: 24px;
}

.side-preview-content span {
    color: #b775a8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.side-preview-content h3 {
    margin: 12px 0 18px;
    color: #f7c85b;
    font-size: 28px;
    line-height: 1.1;
}

.side-preview-content ul {
    padding-left: 20px;
}

.side-preview-content li {
    margin-bottom: 12px;
    color: #d8d2dc;
    line-height: 1.5;
    font-weight: 600;
}

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

@media (max-width: 1100px) {

    .creator-hero,
    .create-layout {
        grid-template-columns: 1fr;
    }

    .creator-demo-card img {
        height: 360px;
    }

    .create-side-panel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 700px) {

    .creator-hero {
        padding: 24px;
    }

    .creator-hero-content h1 {
        font-size: 38px;
    }

    .create-card-modern {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .create-header h2 {
        font-size: 30px;
    }
}
/* =========================================================
GENIUS HERO
========================================================= */

.genius-hero-modern,
.discover-hero{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;

    padding:34px;
    margin-bottom:34px;

    border-radius:30px;
    overflow:hidden;
    position:relative;

    background:
    radial-gradient(circle at top left,
    rgba(247,200,91,.16),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(127,66,176,.18),
    transparent 38%),

    #15131b;

    border:1px solid rgba(247,200,91,.22);
}

/* =========================================================
BADGES
========================================================= */

.genius-badge,
.discover-badge{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;

    background:rgba(247,200,91,.12);

    color:#f7c85b;

    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.5px;

    margin-bottom:18px;
}

/* =========================================================
TITLES
========================================================= */

.genius-hero-content h1,
.discover-hero-content h1{
    font-size:56px;
    line-height:1;
    margin-bottom:18px;
    color:#fff;
    font-weight:900;
}

.genius-hero-content p,
.discover-hero-content p{
    max-width:620px;
    font-size:18px;
    line-height:1.7;
    color:#d8d2dc;
}

/* =========================================================
BUTTONS
========================================================= */

.genius-main-btn,
.discover-main-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:28px;
    padding:18px 28px;

    border:none;
    border-radius:18px;

    background:
    linear-gradient(90deg,
    #f7c85b,
    #d39580,
    #7f42b0);

    color:#111016;

    font-size:18px;
    font-weight:900;

    cursor:pointer;
    transition:.22s ease;
}

.genius-main-btn:hover,
.discover-main-btn:hover{
    transform:translateY(-3px);
    filter:brightness(1.08);
}

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



/* =========================================================
OVERLAY
========================================================= */

.genius-demo-overlay,
.discover-demo-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(to top,
    rgba(8,7,15,.96),
    rgba(8,7,15,.18));

    padding:26px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    gap:16px;
}

/* =========================================================
STEPS
========================================================= */

.genius-step,
.discover-step{
    display:flex;
    align-items:center;
    gap:14px;

    padding:14px;

    border-radius:18px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(10px);
}

.genius-step span,
.discover-step span{
    width:38px;
    height:38px;

    border-radius:50%;

    background:#f7c85b;
    color:#111016;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:900;
    font-size:15px;

    flex-shrink:0;
}

.genius-step p,
.discover-step p{
    color:#fff;
    font-weight:700;
    line-height:1.4;
}

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

@media (max-width:1100px){

    .genius-hero-modern,
    .discover-hero{
        grid-template-columns:1fr;
    }

    .genius-demo-card img,
    .discover-demo-card img{
        height:380px;
    }
}

@media (max-width:700px){

    .genius-hero-modern,
    .discover-hero{
        padding:24px;
    }

    .genius-hero-content h1,
    .discover-hero-content h1{
        font-size:38px;
    }

    .genius-demo-card img,
    .discover-demo-card img{
        height:300px;
    }

    .genius-step,
    .discover-step{
        padding:12px;
    }

    .genius-step p,
    .discover-step p{
        font-size:14px;
    }
}
/* ============================================================
   SURPRISE CARD V2 - NUEVAS CARDS
============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700&display=swap");





@media (max-width: 760px) {
    #all_surprises_list,
    #created_surprises_list,
    #genius_feed_list,
    .surprise-grid {
        grid-template-columns: 1fr;
    }

    .surprise-card-v2 {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .surprise-card-v2,
    .surprise-card-v2 * {
        transition: none !important;
        animation: none !important;
    }
}
@media (max-width: 1200px) {
    #all_surprises_list,
    #created_surprises_list,
    #genius_feed_list,
    .surprise-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    #all_surprises_list,
    #created_surprises_list,
    #genius_feed_list,
    .surprise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    #all_surprises_list,
    #created_surprises_list,
    #genius_feed_list,
    .surprise-grid {
        grid-template-columns: 1fr;
    }
}




/*cards buenas*/







.section-head h1 {
  margin-top: 8px;
  color: #f7c85b;
  font-size: 36px;
  line-height: 1.1;
}

#all_surprises_list,
.surprise-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  padding: 34px 8px 38px;
}

.surprise-card-v2 {
  width: 320px;
  min-height: 260px;
  position: relative;
  overflow: visible;
  border-radius: 24px;
  background: #111016;
  border: 1px solid rgba(247, 200, 91, 0.42);
  color: #f5f1f7;
  display: flex;
  flex-direction: column;

  /* SHADOW NORMAL CORREGIDO */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.surprise-card-v2-featured {
  border-color: #c779bd;

  /* SHADOW FEATURED MÁS PREMIUM */
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(247, 200, 91, 0.14),
    0 0 24px rgba(247, 200, 91, 0.1);
}

.surprise-card-v2-top {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.surprise-status-v2 {
  position: absolute;
  top: 18px;
  right: 14px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 16, 22, 0.92);
  border: 1px solid rgba(247, 200, 91, 0.42);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: auto;
  display: flex;
  align-items: center;
}

.surprise-status-open {
  top: 74px;
  color: #2ecc71;
}

.surprise-status-in_progress,
.surprise-status-in-progress {
  top: 74px;
  color: #ff8a3d;
}

.surprise-status-delivered {
  top: 74px;
  color: #3fa7f5;
}

.surprise-status-completed {
  top: 74px;
  color: #f7c85b;
}

.surprise-status-cancelled,
.surprise-status-canceled {
  top: 74px;
  color: #e74c3c;
}

/* PNG featured */

.surprise-featured-stack {
  position: absolute;
  right: -8px;
  top: -18px;
  width: 120px;
  height: 58px;
  z-index: 20;
  pointer-events: none;
}

.surprise-featured-v2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  mix-blend-mode: normal;
}

.surprise-featured-bg {
  z-index: 1;
  opacity: 1;
  filter: blur(0.2px) drop-shadow(0 8px 10px rgba(0, 0, 0, 0.55));
}

.surprise-featured-main {
  z-index: 2;
  opacity: 1;
  filter: saturate(1.25) contrast(1.18);
}

.surprise-card-v2-body {
  min-height: 260px;
  padding: 22px 18px 18px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(247, 200, 91, 0.08), transparent 42%),
    linear-gradient(180deg, #16121d, #111016);
  display: flex;
  flex-direction: column;
}

.surprise-card-v2-featured .surprise-card-v2-body {
  background:
    linear-gradient(145deg, rgba(247, 200, 91, 0.14), transparent 45%),
    linear-gradient(180deg, #1a1221, #111016);
}

.surprise-card-v2-meta {
  height: 70px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247, 200, 91, 0.42);
}

.urgent-icon-v2 {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.urgent-icon-placeholder {
    width: 4px;
    height: 24px;
    display: block;
}
.categorySize{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 7rem;
}

.surprise-card-v2-meta p {
  margin: 0;
  color: #d8d2dc;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.surprise-card-v2-meta strong {
  display: block;
  margin-top: 3px;
  color: #c779bd;
  font-size: 14px;
  white-space: nowrap;
}

.surprise-countdown-v2 {
  color: #f7c85b;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.surprise-card-v2 h4 {
  font-family: "Manrope", Arial, sans-serif;
  padding-top: 10px;
  min-height: 78px;
  margin: 18px 0 0;
  color: #f0dbac;
  font-weight: 500;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
}

.surprise-card-v2-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 18px;
  flex-wrap: wrap;
}

.surprise-card-v2-actions a,
.surprise-card-v2-actions-offer {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.action-primary {
  color: #f7c85b;
  background: #201b24;
  border: 1px solid rgba(247, 200, 91, 0.42);
}

.action-danger {
  background: transparent;
  color: #ff8d8d;
  border: 1px solid rgba(255, 141, 141, 0.28);
}

.action-more {
  color: #ffd86b;
  border: 1px solid rgba(247, 200, 91, 0.42);
}

.surprise-card-v2-actions-offer {
  color: #201b24;
  background: #f7c85b;
  border: 1px solid rgba(247, 200, 91, 0.55);
}

@media (max-width: 600px) {
  .surprise-section {
    padding: 30px 18px;
  }

  .section-head h1 {
    font-size: 28px;
  }

  #all_surprises_list,
  .surprise-grid {
    gap: 18px;
    padding-top: 34px;
  }

  #all_surprises_list > .surprise-card-v2,
  .surprise-grid > .surprise-card-v2 {
    flex-basis: 320px;
  }

  .surprise-card-v2 {
    width: 320px;
  }

  .surprise-card-v2-body {
    min-height: 260px;
  }

  .surprise-card-v2 h4 {
    font-size: 19px;
  }

  .surprise-countdown-v2 {
    font-size: 15px;
  }
}

/* ============================================================
   HOVER / ANIMACIONES
============================================================ */

.surprise-card-v2,
.surprise-card-v2-actions a,
.surprise-card-v2-actions-offer,
.surprise-status-v2,
.surprise-featured-stack {
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

/* Card hover */

.surprise-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 200, 91, 0.78);

  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.52);
}

/* Featured hover */

.surprise-card-v2-featured:hover {
  border-color: rgba(247, 200, 91, 0.95);

  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(247, 200, 91, 0.18),
    0 0 28px rgba(247, 200, 91, 0.14);
}

/* Botones */

.surprise-card-v2-actions a:hover,
.surprise-card-v2-actions-offer:hover {
  transform: translateY(-3px);
}

.action-primary:hover {
  color: #111016;
  background: #f7c85b;
}

.action-more:hover {
  color: #111016;
  background: #ffd86b;
}

.surprise-card-v2-actions-offer:hover {
  color: #111016;
  background: #ffdf84;

  box-shadow: 0 10px 24px rgba(247, 200, 91, 0.22);
}

.action-danger:hover {
  background: rgba(255, 141, 141, 0.1);
  border-color: rgba(255, 141, 141, 0.48);
}

/* Click */

.surprise-card-v2-actions a:active,
.surprise-card-v2-actions-offer:active {
  transform: translateY(-1px) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .surprise-card-v2,
  .surprise-card-v2 *,
  .surprise-card-v2::before,
  .surprise-card-v2::after {
    transition: none !important;
    animation: none !important;
  }
}

/*============================*/
/*filtros home*/
/*============================*/
.surpriser-filter-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background:
    linear-gradient(145deg, rgba(247, 200, 91, 0.06), transparent 45%),
    #111016;
  border: 1px solid rgba(247, 200, 91, 0.22);
  border-radius: 18px;
  font-family: inherit;
  flex-wrap: wrap;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  margin-bottom: 2rem;
}

/* ITEM */
.filter-item {
  position: relative;
}

/* BOTÓN */
.filter-btn {
  background: #201b24;
  color: #f5f1f7;
  border: 1px solid rgba(247, 200, 91, 0.34);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  color: #111016;
  background: #f7c85b;
  border-color: #f7c85b;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  z-index: 9999;
  overflow: hidden;
  background: #15131b;
  border: 1px solid rgba(247, 200, 91, 0.35);
  border-radius: 14px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(127, 66, 176, 0.12);
}

.dropdown-menu.is-open {
  display: block;
}
.filter-item {
  position: relative;
  overflow: visible;
}

.surpriser-filter-nav {
  overflow: visible;
}

/* OPTION */
.option {
  padding: 11px 13px;
  color: #d8d2dc;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.16s ease,
    color 0.16s ease;
}

.option:hover {
  background: rgba(247, 200, 91, 0.12);
  color: #f7c85b;
}

/* TOGGLES */
.toggles {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8d2dc;
  font-size: 13px;
  font-weight: 700;
}

.toggles label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.toggles input {
  accent-color: #f7c85b;
}

/* RESET */
.reset-btn {
  margin-left: auto;
  background: transparent;
  color: #f7c85b;
  border: 1px solid rgba(247, 200, 91, 0.42);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.reset-btn:hover {
  transform: translateY(-2px);
  background: #f7c85b;
  color: #111016;
}
.surpriser-filter-nav,
.filter-item {
  overflow: visible;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu.is-open {
  display: block;
}

/*==============================*/
/*notifications burbuja y nuevo*/
/*==============================*/
.notif-button {
  position: relative;
}

.notif-badge {
  display: none;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff3b5f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
/* ============================================================
   SURPRISE DETAIL
============================================================ */

.detail-back-btn {
    margin-bottom: 22px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(247, 200, 91, 0.42);
    background: #17131d;
    color: #f7c85b;
    font-weight: 900;
    cursor: pointer;
}

.detail-back-btn:hover {
    background: #f7c85b;
    color: #111016;
}

.surprise-detail-shell {
    width: 100%;
}

.surprise-detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
    align-items: stretch;
}

.surprise-detail-main {
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(247, 200, 91, 0.08), transparent 42%),
        #111016;
    border: 1px solid rgba(247, 200, 91, 0.35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.surprise-detail-image {
    height: 360px;
    overflow: hidden;
    background: #0f0d14;
}

.surprise-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.surprise-detail-content {
    padding: 30px;
}

.detail-kicker {
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(199, 121, 189, 0.14);
    color: #c779bd;
    border: 1px solid rgba(199, 121, 189, 0.38);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.surprise-detail-content h1 {
    max-width: 850px;
    color: #f0dbac;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 600;
    text-transform: uppercase;
}

.detail-description {
    max-width: 850px;
    margin-top: 20px;
    color: #d8d2dc;
    font-size: 17px;
    line-height: 1.7;
}

.detail-info-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.detail-info-grid div {
    padding: 14px;
    border-radius: 16px;
    background: #201b24;
    border: 1px solid rgba(247, 200, 91, 0.22);
}

.detail-info-grid span,
.creator-mini-info span {
    display: block;
    margin-bottom: 5px;
    color: #b775a8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-info-grid strong,
.creator-mini-info strong {
    color: #f5f1f7;
    font-size: 15px;
}

.detail-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-offer-btn,
.detail-secondary-btn {
    height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.detail-offer-btn {
    border: 1px solid rgba(247, 200, 91, 0.65);
    background: #f7c85b;
    color: #111016;
}

.detail-secondary-btn {
    border: 1px solid rgba(247, 200, 91, 0.42);
    background: #201b24;
    color: #f7c85b;
}

.detail-offer-btn:hover,
.detail-secondary-btn:hover {
    transform: translateY(-2px);
}

.detail-secondary-btn:hover {
    background: #f7c85b;
    color: #111016;
}

/* Creator side */

.creator-detail-panel {
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(199, 121, 189, 0.10), transparent 42%),
        #15131b;
    border: 1px solid rgba(247, 200, 91, 0.35);
    padding: 24px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.creator-detail-avatar {
    width: 132px;
    height: 132px;
    margin: 0 auto 18px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f7c85b;
}

.creator-name-btn {
    border: none;
    background: transparent;
    color: #f7c85b;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
}

.creator-name-btn:hover {
    color: #c779bd;
}

.creator-role-list {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.creator-role-list span {
    padding: 7px 11px;
    border-radius: 999px;
    color: #111016;
    background: linear-gradient(90deg, #f7c85b, #c779bd);
    font-size: 12px;
    font-weight: 900;
}

.creator-mini-info {
    margin-top: 24px;
    display: grid;
    gap: 12px;
    text-align: left;
}

.creator-mini-info div {
    padding: 13px;
    border-radius: 14px;
    background: #201b24;
    border: 1px solid rgba(247, 200, 91, 0.22);
}

@media (max-width: 980px) {
    .surprise-detail-card {
        grid-template-columns: 1fr;
    }

    .detail-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .surprise-detail-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 620px) {
    .surprise-detail-image {
        height: 240px;
    }

    .surprise-detail-content {
        padding: 22px;
    }

    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .surprise-detail-content h1 {
        font-size: 26px;
    }
}
/* ============================================================
   DETAIL COMPACT
============================================================ */

.surprise-detail-compact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 22px;
    align-items: start;
}

.detail-main-card {
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(247, 200, 91, 0.08), transparent 42%),
        #111016;
    border: 1px solid rgba(247, 200, 91, 0.35);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
    padding: 24px;
}

.detail-header-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: start;
    margin-bottom: 20px;
}

.detail-header-row .surprise-status-v2 {
    position: static;
    width: fit-content;
}

.detail-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(199, 121, 189, 0.14);
    color: #c779bd;
    border: 1px solid rgba(199, 121, 189, 0.38);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-main-card h1 {
    max-width: 760px;
    color: #f0dbac;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    align-items: start;
}

.detail-image-compact {
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
    background: #0f0d14;
    border: 1px solid rgba(247, 200, 91, 0.25);
}

.detail-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-summary p {
    color: #d8d2dc;
    line-height: 1.55;
    font-size: 15px;
}

.detail-info-grid.compact {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.detail-info-grid.compact div {
    padding: 12px;
    border-radius: 14px;
    background: #201b24;
    border: 1px solid rgba(247, 200, 91, 0.22);
}

.detail-info-grid span,
.creator-mini-info span {
    display: block;
    color: #b775a8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-info-grid strong,
.creator-mini-info strong {
    display: block;
    margin-top: 4px;
    color: #f5f1f7;
    font-size: 14px;
}

.detail-files-block {
    margin-top: 22px;
}

.detail-files-block h3 {
    margin-bottom: 12px;
    color: #f7c85b;
    font-size: 16px;
}

.detail-files-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-file-thumb {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(247, 200, 91, 0.35);
    background: #201b24;
}

.detail-file-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-generic-icon {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #f7c85b;
    font-size: 11px;
    font-weight: 900;
}

.detail-empty-files {
    color: #8f879b;
    font-size: 14px;
}

.creator-detail-panel.compact {
    border-radius: 24px;
    padding: 22px;
}

.creator-detail-avatar {
    width: 112px;
    height: 112px;
}

/* ============================================================
   OFFER MODAL
============================================================ */

.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
}

.offer-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 7, 15, 0.78);
    backdrop-filter: blur(8px);
}

.offer-modal-card {
    position: relative;
    z-index: 2;
    width: min(100%, 460px);
    padding: 26px;
    border-radius: 24px;
    background: #15131b;
    border: 1px solid rgba(247, 200, 91, 0.42);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
}

.offer-modal-card h2 {
    color: #f7c85b;
    font-size: 28px;
}

.offer-help,
.offer-modal-card small {
    display: block;
    color: #d8d2dc;
    margin: 8px 0 14px;
    line-height: 1.45;
}

.offer-modal-card label {
    display: block;
    color: #f7c85b;
    font-weight: 900;
    margin-top: 14px;
}

.offer-modal-card textarea {
    min-height: 110px;
    resize: vertical;
}

.offer-modal-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* ============================================================
   NOTIFICATION TOAST
============================================================ */

.notification-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    width: min(360px, calc(100vw - 32px));
    padding: 16px 18px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(247, 200, 91, 0.12), transparent 42%),
        #15131b;
    border: 1px solid rgba(247, 200, 91, 0.42);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48);
    gap: 4px;
}

.notification-toast strong {
    color: #f7c85b;
    font-size: 15px;
}

.notification-toast span {
    color: #d8d2dc;
    font-size: 14px;
}

@media (max-width: 980px) {
    .surprise-detail-compact,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .detail-info-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .detail-main-card {
        padding: 18px;
    }

    .detail-main-card h1 {
        font-size: 24px;
    }

    .detail-info-grid.compact {
        grid-template-columns: 1fr;
    }

    .detail-image-compact {
        height: 190px;
    }
}
/* ============================================================
   OWNER CARDS
============================================================ */

.owner-card .surprise-card-v2-body {
    min-height: 245px;
}

.owner-card .surprise-card-v2-actions {
    justify-content: center;
}

.owner-card .action-primary,
.owner-card .action-danger {
    width: 120px;
}

/* ============================================================
   OWNER DETAIL EDIT
============================================================ */

.owner-detail-card {
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(247, 200, 91, 0.08), transparent 42%),
        #111016;
    border: 1px solid rgba(247, 200, 91, 0.35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    padding: 26px;
}

.owner-detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    margin-bottom: 22px;
}

.owner-detail-head .surprise-status-v2 {
    position: static;
}

.owner-title-input {
    width: 100%;
    margin-top: 10px;
    border: none;
    background: transparent;
    color: #f0dbac;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
}

.owner-title-input:focus {
    outline: none;
    color: #f7c85b;
}

.owner-detail-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

.owner-image-panel {
    display: grid;
    gap: 14px;
}

.owner-image-panel img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(247, 200, 91, 0.3);
    background: #0f0d14;
}

.owner-upload-btn,
.owner-file-add {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #201b24;
    color: #f7c85b;
    border: 1px solid rgba(247, 200, 91, 0.42);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.owner-upload-btn:hover,
.owner-file-add:hover {
    background: #f7c85b;
    color: #111016;
}

.owner-edit-panel label,
.owner-detail-card label {
    display: block;
    margin-bottom: 7px;
    color: #f7c85b;
    font-size: 13px;
    font-weight: 900;
}

.owner-edit-panel textarea {
    min-height: 132px;
    resize: vertical;
}

.owner-form-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.owner-files-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(247, 200, 91, 0.28);
}

.owner-files-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.owner-files-head h3 {
    color: #f7c85b;
    font-size: 18px;
}

.owner-detail-actions {
    margin-top: 26px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .owner-detail-grid {
        grid-template-columns: 1fr;
    }

    .owner-title-input {
        font-size: 26px;
    }
}

@media (max-width: 620px) {
    .owner-detail-card {
        padding: 18px;
    }

    .owner-detail-head {
        grid-template-columns: 1fr;
    }

    .owner-form-grid {
        grid-template-columns: 1fr;
    }
}
.owner-detail-message {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.owner-detail-message.success {
    background: rgba(46, 204, 113, 0.14);
    color: #6ee08f;
    border: 1px solid rgba(46, 204, 113, 0.42);
}

.owner-detail-message.error {
    background: rgba(255, 77, 109, 0.14);
    color: #ff8fa4;
    border: 1px solid rgba(255, 77, 109, 0.45);
}

.owner-detail-message.info {
    background: rgba(247, 200, 91, 0.12);
    color: #f7c85b;
    border: 1px solid rgba(247, 200, 91, 0.36);
}
.owner-file-thumb-wrap {
    position: relative;
}

.owner-file-delete {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 143, 164, 0.55);
    border-radius: 50%;
    background: #ff4d6d;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.owner-file-delete:hover {
    transform: scale(1.08);
    filter: brightness(1.08);
}
.detail-files-grid,
.owner-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 14px;
}

.owner-file-thumb-wrap {
    position: relative;
    min-width: 0;
}

.owner-file-card {
    display: grid;
    gap: 8px;
    text-decoration: none;
    color: #f5f1f7;
}

.owner-file-preview {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 110px;
    border-radius: 14px;
    overflow: hidden;
    background: #201b24;
    border: 1px solid rgba(247, 200, 91, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Por si tu CSS antiguo afectaba a todas las imágenes */
.detail-files-grid img,
.owner-files-grid img,
.owner-file-thumb-wrap img {
    max-width: 100%;
    max-height: 110px;
    object-fit: cover;
}

.owner-file-name {
    display: block;
    max-width: 100%;
    color: #d8d2dc;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-generic-icon {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7c85b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    background: rgba(247, 200, 91, 0.08);
}
.creator-hero {
    display: grid;
    -grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.creator-hero-content {
    min-width: 0;
}

.creator-main-btn {
    justify-self: end;
    margin-top: 0;
    white-space: nowrap;
}
@media (max-width: 700px) {
    .creator-hero {
        grid-template-columns: 1fr;
    }

    .creator-main-btn {
        justify-self: stretch;
        width: 100%;
    }
}
.surpriser-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(8, 7, 15, 0.78);
    backdrop-filter: blur(10px);
}

.surpriser-modal-card {
    width: min(100%, 460px);
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(247, 200, 91, 0.10), transparent 44%),
        #15131b;
    border: 1px solid rgba(247, 200, 91, 0.42);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.modal-head span {
    color: #c779bd;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-head h2 {
    margin-top: 8px;
    color: #f7c85b;
    font-size: 26px;
    line-height: 1.1;
}

.modal-head p {
    margin: 12px 0 20px;
    color: #d8d2dc;
    font-size: 14px;
    line-height: 1.5;
}

.cancel-modal-card label {
    display: block;
    margin-bottom: 8px;
    color: #f7c85b;
    font-size: 14px;
    font-weight: 900;
}

.cancel-modal-card select,
.cancel-modal-card textarea {
    width: 100%;
    margin-bottom: 16px;
}

.cancel-modal-card textarea {
    min-height: 120px;
    resize: vertical;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.modal-danger-btn {
    width: auto;
    min-width: 160px;
    height: 42px;
    border-radius: 999px;
    cursor: pointer;
}
.dash-hero,
.create-surprise-pro,
.conversation-shell,
.pricing-block {
    border: 1px solid rgba(247, 200, 91, .28);
    background:
        linear-gradient(145deg, rgba(247,200,91,.10), transparent 42%),
        #15131b;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0,0,0,.38);
}

.dash-hero {
    padding: 30px;
    margin-bottom: 24px;
}

.dash-hero h1,
.create-pro-head h1 {
    color: #f7c85b;
    font-size: 42px;
    line-height: 1;
    margin-top: 10px;
}

.dash-hero p,
.create-pro-head p {
    margin-top: 14px;
    color: #d8d2dc;
    line-height: 1.6;
}

.surpriser-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 20px;
}

.dashboard-panel {
    padding: 22px;
    border-radius: 22px;
    background: #111016;
    border: 1px solid rgba(247,200,91,.34);
}

.dashboard-panel h2,
.pricing-block h2 {
    color: #f7c85b;
    margin-bottom: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
}

.stat-box {
    padding: 14px;
    border-radius: 16px;
    background: #201b24;
    border: 1px solid rgba(247,200,91,.22);
}

.stat-box span {
    display: block;
    color: #b775a8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.stat-box strong {
    display: block;
    margin-top: 8px;
    color: #f7c85b;
    font-size: 28px;
}

.skill-dashboard-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.skill-dashboard-pill {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 999px;
    background: rgba(247,200,91,.08);
    border: 1px solid rgba(247,200,91,.24);
    color: #f5f1f7;
    font-weight: 800;
}

.profile-mini-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.profile-mini-head img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f7c85b;
}

.profile-mini-head strong {
    display: block;
    color: #f7c85b;
    font-size: 20px;
}

.profile-mini-head span {
    color: #c779bd;
    font-weight: 800;
}

/* Conversaciones */
.conversation-shell {
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 680px;
    overflow: hidden;
}

.conversation-list-panel {
    border-right: 1px solid rgba(247,200,91,.22);
    padding: 18px;
    background: #111016;
}

.conversation-list {
    display: grid;
    gap: 12px;
}

.conversation-item {
    width: 100%;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(247,200,91,.28);
    background: #201b24;
    color: #f5f1f7;
    cursor: pointer;
    text-align: left;
    transition: .2s ease;
}

.conversation-item:hover,
.conversation-item.is-active {
    transform: translateY(-2px);
    border-color: #f7c85b;
}

.conversation-title {
    display: block;
    color: #f7c85b;
    font-weight: 900;
    margin-bottom: 10px;
}

.conversation-users {
    display: flex;
    align-items: center;
    gap: 8px;
}

.conversation-users img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c779bd;
}

.conversation-users span {
    color: #d8d2dc;
    font-size: 13px;
    font-weight: 800;
}

.chat-panel {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #0f0d14;
}

.chat-empty {
    margin: auto;
    color: #d8d2dc;
    font-weight: 800;
}

.chat-view {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-head {
    padding: 18px;
    border-bottom: 1px solid rgba(247,200,91,.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.chat-head span {
    display: block;
    color: #b775a8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.chat-head strong {
    color: #f7c85b;
    font-size: 20px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-row {
    display: flex;
}

.message-row.mine {
    justify-content: flex-end;
}

.message-bubble {
    max-width: min(72%, 560px);
    padding: 12px 14px;
    border-radius: 18px;
    background: #201b24;
    border: 1px solid rgba(247,200,91,.22);
    color: #f5f1f7;
}

.message-row.mine .message-bubble {
    background: rgba(247,200,91,.16);
    border-color: rgba(247,200,91,.42);
}

.message-bubble p {
    line-height: 1.45;
}

.message-bubble time {
    display: block;
    margin-top: 6px;
    color: #9f96aa;
    font-size: 11px;
    text-align: right;
}

.chat-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(247,200,91,.22);
}

.chat-form input {
    margin: 0;
}

.chat-form button {
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    background: #f7c85b;
    color: #111016;
    font-weight: 900;
    cursor: pointer;
}

/* Pricing */
.pricing-block {
    padding: 24px;
    margin-bottom: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.pricing-card {
    min-height: 210px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(247,200,91,.34);
    background: #111016;
    color: #f5f1f7;
    text-align: left;
    cursor: pointer;
    transition: .22s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #f7c85b;
}

.pricing-card span {
    color: #c779bd;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-card strong {
    display: block;
    margin: 12px 0;
    color: #f7c85b;
    font-size: 38px;
}

.pricing-card p {
    color: #f5f1f7;
    font-weight: 900;
}

.pricing-card small {
    display: block;
    margin-top: 12px;
    color: #d8d2dc;
    line-height: 1.5;
}

.pricing-card.featured {
    background:
        linear-gradient(145deg, rgba(247,200,91,.16), transparent 45%),
        #15131b;
}

.pricing-card.premium {
    border-color: #c779bd;
    box-shadow: 0 0 42px rgba(199,121,189,.16);
}

/* Crear sorpresa pro */
.create-surprise-pro {
    padding: 28px;
}

.create-pro-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 26px;
}

.create-pro-form {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}

.create-pro-main,
.create-media-panel {
    padding: 22px;
    border-radius: 22px;
    background: #111016;
    border: 1px solid rgba(247,200,91,.24);
}

.create-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
}

.create-field {
    margin-bottom: 16px;
}

.create-field label,
.create-media-panel label {
    display: block;
    margin-bottom: 8px;
    color: #f7c85b;
    font-weight: 900;
}

.create-field.large textarea {
    min-height: 150px;
    resize: vertical;
}

.create-preview-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    margin: 12px 0 18px;
    border: 1px solid rgba(247,200,91,.3);
}

.create-media-panel p {
    color: #d8d2dc;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .surpriser-dashboard-grid,
    .pricing-grid,
    .create-pro-form,
    .conversation-shell {
        grid-template-columns: 1fr;
    }

    .conversation-shell {
        min-height: auto;
    }

    .conversation-list-panel {
        border-right: 0;
        border-bottom: 1px solid rgba(247,200,91,.22);
    }

    .create-pro-head {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .stats-grid,
    .create-row {
        grid-template-columns: 1fr;
    }

    .dash-hero h1,
    .create-pro-head h1 {
        font-size: 32px;
    }
}