:root{
    --primary:#EE5BD4;
    --primary-soft: rgba(238,91,212,0.15);
    --primary-glow: rgba(238,91,212,0.45);
}

body {
    margin:0;
    font-family:-apple-system,BlinkMacSystemFont,sans-serif;
    background:#0f172a;
    color:white;
}

/* FRAME */
.wrapper {
    max-width:1200px;
    margin:0 auto;
    padding:60px 20px;
    position:relative;
    z-index:1;
}

.event-countdown-box {
    position:fixed;
    top:20px;
    right:20px;
    width:min(500px, calc(100vw - 40px));
    padding:22px;
    border-radius:20px;
    background:rgba(255,255,255,0.72);
    backdrop-filter:blur(14px) saturate(130%);
    -webkit-backdrop-filter:blur(14px) saturate(130%);
    border:1px solid rgba(255,255,255,0.85);
    box-shadow:0 12px 35px rgba(2,6,23,0.25);
    z-index:4;
    color:#0f172a;
}

.event-kicker {
    margin:0 0 6px;
    font-size:14px;
    letter-spacing:.04em;
    text-transform:uppercase;
    opacity:.75;
    position:relative;
    min-height:1.2em;
}

.event-kicker-label,
.event-kicker-countdown {
    display:block;
    transition:opacity .28s ease, transform .28s ease;
}

.event-kicker-countdown {
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transform:translateY(3px);
    font-weight:800;
    color:#EE5BD4;
}

.event-title {
    margin:0;
    font-size:28px;
    font-weight:900;
    line-height:1.03;
    letter-spacing:.01em;
    font-style:italic;
    transform:skewX(-10deg);
    transform-origin:left center;
}

.event-title .vs {
    color:#EE5BD4;
}

.event-date {
    margin:14px 0 8px;
    font-size:15px;
    font-weight:700;
    letter-spacing:.02em;
}

.event-countdown-time {
    font-size:26px;
    font-weight:800;
    letter-spacing:.04em;
    color:#EE5BD4;
}

.event-countdown-time.tick {
    animation:countTick .35s ease;
}

@keyframes countTick {
    0% { transform:scale(1); opacity:.85; }
    40% { transform:scale(1.04); opacity:1; }
    100% { transform:scale(1); opacity:1; }
}

/* SLIDER */
.banner {
    position:relative;
    min-height:260px;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
    box-shadow:0 0 40px var(--primary-soft);
}

.slider-nav {
    position:absolute;
    bottom:12px;
    width:40px;
    height:40px;
    border:none;
    background:rgba(0,0,0,0.25);
    color:white;
    border-radius:50%;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .3s ease;
    z-index:2;
    opacity:0;
}

.slider-nav:hover {
    background:rgba(0,0,0,0.45);
}

.banner:hover .slider-nav {
    opacity:1;
}

.slider-nav-prev {
    right:54px;
}

.slider-nav-next {
    right:12px;
}

.slide {
    position:absolute;
    width:100%;
    height:100%;
    padding:40px;
    box-sizing:border-box;
    opacity:0;
    transition:opacity .8s ease;
}

.slide.active { opacity:1; }

.slide1 {
    background:linear-gradient(90deg,var(--primary),#8b5cf6,#ec4899);
}

.slide.banner-gradient-pink {
    background:linear-gradient(90deg,var(--primary),#8b5cf6,#ec4899);
}

.slide.banner-gradient-black {
    background:linear-gradient(90deg,#1a1a1a,#3a3a3a);
    color:white;
}

.slide.banner-gradient-white {
    background:#ffffff;
    color:#000000;
}

.slide2 {
    background:linear-gradient(90deg,#f59e0b,var(--primary));
}

.slide3 {
    background:linear-gradient(90deg,var(--primary),#06b6d4);
}

/* BADGE */
.badge {
    display:inline-block;
    padding:3px 8px;
    background:var(--primary);
    color:white;
    font-weight:bold;
    border-radius:20px;
    font-size:16px;
}

.badge-link {
    text-decoration:none;
}

.badge-link:hover {
    filter:brightness(1.05);
}

/* KPIS */
.kpis {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap:20px;
    margin-bottom:50px;
}

.card {
    background:rgba(30,41,59,0.58);
    backdrop-filter:blur(12px) saturate(130%);
    -webkit-backdrop-filter:blur(12px) saturate(130%);
    padding:25px;
    border-radius:16px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.14);
    box-shadow:0 10px 30px rgba(2,6,23,0.28);
    transition:.3s;
}

.card:hover {
    border:1px solid rgba(255,255,255,0.22);
    box-shadow:0 0 20px var(--primary-soft), 0 12px 35px rgba(2,6,23,0.35);
}

/* EVENT FILTER PILLS */
.event-pills-container {
    margin-bottom:30px;
}

.event-pills {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.event-pill {
    padding:8px 16px;
    border-radius:20px;
    border:none;
    background:rgba(30,41,59,0.58);
    backdrop-filter:blur(12px) saturate(130%);
    -webkit-backdrop-filter:blur(12px) saturate(130%);
    color:white;
    cursor:pointer;
    font-size:14px;
    font-weight:500;
    transition:all .3s ease;
    white-space:nowrap;
}

.event-pill:not(.active):hover {
    background:rgba(238, 91, 212, 0.35);
    transform:translateY(-1px);
    box-shadow:0 0 12px var(--primary-glow);
}

.event-pill-create-first {
    padding:8px 16px;
    border-radius:20px;
    border:none;
    background:#EE5BD4;
    color:white;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    letter-spacing:.02em;
    transition:all .3s ease;
    white-space:nowrap;
}

.event-pill-create-first:hover {
    filter:brightness(1.06);
    transform:translateY(-1px);
    box-shadow:0 0 12px var(--primary-glow);
}

.event-pill.active {
    background:var(--primary);
    color:white;
    box-shadow:0 0 15px var(--primary-glow);
}

/* HORIZONTAL NAVIGATION */
.horizontal-nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:0;
    margin-bottom:40px;
    width:100%;
    background:rgba(47, 47, 47, 0.55);
    backdrop-filter:blur(14px) saturate(130%);
    -webkit-backdrop-filter:blur(14px) saturate(130%);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(2,6,23,0.25);
}

.nav-btn {
    flex:1;
    padding:18px 20px;
    border:none;
    border-radius:0;
    background:transparent;
    color:white;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:900;
    font-style:italic;
    letter-spacing:.01em;
    transform:skewX(-10deg);
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
    position:relative;
    overflow:hidden;
}

.nav-btn span {
    display:inline-block;
    transform:skewX(10deg);
}

.nav-btn:hover {
    color:var(--primary);
    background:rgba(238,91,212,0.15);
    text-shadow:0 0 20px var(--primary-glow);
}

.nav-btn.active {
    color:white;
    background:rgba(238,91,212,0.85);
    text-shadow:0 0 25px var(--primary-glow);
}

/* INFO BUTTON (Mobile only) */
.info-btn {
    display:none;
    margin:0 auto 40px;
    padding:12px 30px;
    border:1px solid rgba(255,255,255,0.14);
    border-radius:12px;
    background:rgba(30,41,59,0.58);
    backdrop-filter:blur(12px) saturate(130%);
    -webkit-backdrop-filter:blur(12px) saturate(130%);
    color:white;
    cursor:pointer;
    font-size:12px;
    font-weight:900;
    font-style:italic;
    letter-spacing:.01em;
    transform:skewX(-10deg);
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
}

.info-btn span {
    display:inline-block;
    transform:skewX(10deg);
}

.info-btn:hover {
    border-color:rgba(238,91,212,0.7);
    color:white;
    background:rgba(238,91,212,0.35);
    text-shadow:0 0 20px var(--primary-glow);
    transform:skewX(-10deg) translateY(-1px);
}

.info-btn.active {
    border-color:rgba(238,91,212,0.7);
    background:rgba(238,91,212,0.35);
    color:white;
    text-shadow:0 0 20px var(--primary-glow);
}

/* EVENT FILTER NAV */
.events-filter-nav {
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:24px;
}

.events-filter-label {
    color:rgba(255,255,255,0.55);
    font-size:11px;
    font-weight:900;
    font-style:italic;
    letter-spacing:.08em;
    white-space:nowrap;
    flex-shrink:0;
}

.events-filter-btns {
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.events-filter-btn {
    padding:6px 16px;
    border:1.5px solid rgba(255,255,255,0.7);
    border-radius:20px;
    background:transparent;
    color:rgba(255,255,255,0.8);
    font-size:11px;
    font-weight:900;
    font-style:italic;
    letter-spacing:.06em;
    cursor:pointer;
    transition:all .25s ease;
    white-space:nowrap;
}

.events-filter-btn:hover {
    border-color:white;
    color:white;
    background:rgba(255,255,255,0.1);
}

.events-filter-btn.active {
    background:white;
    border-color:white;
    color:#1e293b;
}

/* POSTS GRID */
.posts-grid-container {
    position:relative;
    min-height:400px;
}

.posts-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    opacity:1;
    transition:opacity .35s ease, transform .35s ease;
}

.posts-grid[data-category]:not([style*="display: none"]) {
    animation:fadeInGrid .5s cubic-bezier(0.32, 0.72, 0, 1);
}

.posts-grid.fade-out {
    opacity:0;
    transform:translateY(-10px);
}

@keyframes fadeInGrid {
    0% {
        opacity:0;
        transform:translateY(10px);
    }
    100% {
        opacity:1;
        transform:translateY(0);
    }
}

/* POST CARD */
.post-card {
    background:white;
    backdrop-filter:blur(14px) saturate(130%);
    -webkit-backdrop-filter:blur(14px) saturate(130%);
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 12px 35px rgba(2,6,23,0.25);
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
    display:flex;
    flex-direction:column;
    animation:fadeInCard .5s cubic-bezier(0.32, 0.72, 0, 1) backwards;
}

.post-card:hover {
    transform:translateY(-6px);
    box-shadow:0 0 30px var(--primary-glow), 0 18px 45px rgba(2,6,23,0.35);
}

@keyframes fadeInCard {
    0% {
        opacity:0;
        transform:translateY(20px) scale(0.96);
    }
    100% {
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.post-card:nth-child(1) { animation-delay:0.05s; }
.post-card:nth-child(2) { animation-delay:0.1s; }
.post-card:nth-child(3) { animation-delay:0.15s; }
.post-card:nth-child(4) { animation-delay:0.2s; }
.post-card:nth-child(5) { animation-delay:0.25s; }
.post-card:nth-child(6) { animation-delay:0.3s; }
.post-card:nth-child(7) { animation-delay:0.35s; }
.post-card:nth-child(8) { animation-delay:0.4s; }

.post-card-image {
    width:100%;
    height:280px;
    background-size:cover;
    background-position:center;
    position:relative;
    transition:transform .25s ease, filter .25s ease;
}

.post-card-image-link,
.post-card-image-button {
    display:block;
    width:100%;
    padding:0;
    border:none;
    background:none;
    text-align:left;
}

.post-card-image-button {
    cursor:pointer;
}

.post-card-image-link:hover .post-card-image,
.post-card-image-button:hover .post-card-image {
    transform:scale(1.015);
    filter:brightness(1.03);
}

.post-card-content {
    padding:22px;
    display:flex;
    flex-direction:column;
    gap:8px;
    flex-grow:1;
    color:#0f172a;
}

.post-card-title {
    margin:0;
    font-size:20px;
    font-weight:900;
    line-height:1.2;
    letter-spacing:.01em;
}

.post-card-excerpt {
    margin:0;
    font-size:14px;
    line-height:1.5;
    opacity:.75;
    flex-grow:1;
}

.post-card-date {
    margin:8px 0 0;
    font-size:15px;
    font-weight:800;
    color:#EE5BD4;
    letter-spacing:.02em;
}

.post-card-date-row {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.post-card-date-row .post-card-date {
    margin: 0;
}

.post-card-duration-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    background: rgba(238, 91, 212, 0.14);
    border: 1px solid rgba(238, 91, 212, 0.45);
    color: #EE5BD4;
    letter-spacing: 0.02em;
}

.post-card-past-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.88);
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}

.post-card-btn {
    display:inline-block;
    padding:12px 24px;
    background:#EE5BD4;
    color:white;
    text-decoration:none;
    border:none;
    border-radius:12px;
    font-weight:800;
    font-size:14px;
    text-align:center;
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
    margin-top:8px;
    text-transform:uppercase;
    letter-spacing:.04em;
    cursor:pointer;
    font-family:inherit;
}

.post-card-btn:hover {
    background:#d946c7;
    box-shadow:0 0 20px var(--primary-glow);
    transform:scale(1.03);
}

.post-card-btn.post-card-btn-disabled,
.post-card-btn.post-card-btn-disabled:hover {
    background:rgba(255,255,255,0.16);
    color:#000;
    box-shadow:none;
    transform:none;
    cursor:not-allowed;
}

.content-card-body .wp-block-button__link {
    display: inline-block;
    padding: 12px 24px;
    background: #EE5BD4;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    font-family: inherit;
}

.content-card-body .wp-block-button__link:hover {
    background: #d946c7;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.03);
}

.no-posts {
    grid-column:1 / -1;
    text-align:center;
    padding:60px 20px;
    opacity:.6;
    font-size:18px;
}

/* ART CARDS */
.art-card {
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(2,6,23,0.25);
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
    display:flex;
    flex-direction:column;
    animation:fadeInCard .5s cubic-bezier(0.32, 0.72, 0, 1) backwards;
    position:relative;
    min-height:400px;
}

.art-card:hover {
    transform:translateY(-6px);
    box-shadow:0 0 30px var(--primary-glow), 0 18px 45px rgba(2,6,23,0.35);
}

.art-card-image {
    width:100%;
    height:320px;
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
    flex-shrink:0;
    margin-top:10px;
}

.art-card-content {
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:16px;
    flex-grow:1;
    justify-content:flex-end;
}

.art-card-title {
    margin:0;
    font-size:22px;
    font-weight:900;
    line-height:1.2;
    letter-spacing:.01em;
    color:white;
}

.art-card-btn {
    display:inline-block;
    padding:12px 24px;
    background:white;
    color:#0f172a;
    text-decoration:none;
    border:none;
    border-radius:12px;
    font-weight:800;
    font-size:14px;
    text-align:center;
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
    text-transform:uppercase;
    letter-spacing:.04em;
    cursor:pointer;
    font-family:inherit;
}

.art-card-btn:hover {
    background:#f1f5f9;
    box-shadow:0 0 20px rgba(255,255,255,0.5);
    transform:scale(1.03);
}

/* Light variant for white backgrounds */
.art-card-light .art-card-title {
    color:#0f172a;
    text-shadow:none;
}

.art-card-light .art-card-btn {
    background:#0f172a;
    color:white;
}

.art-card-light .art-card-btn:hover {
    background:#1e293b;
    box-shadow:0 0 20px rgba(15,23,42,0.5);
}

/* PARTNER SECTION */
.partner-grid {
    display:block;
    opacity:1;
    transition:opacity .35s ease, transform .35s ease;
    animation:fadeInGrid .5s cubic-bezier(0.32, 0.72, 0, 1);
}

.partner-grid[data-category]:not([style*="display: none"]) {
    animation:fadeInGrid .5s cubic-bezier(0.32, 0.72, 0, 1);
}

.partner-grid.fade-out {
    opacity:0;
    transform:translateY(-10px);
}

.partner-container {
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:48px;
    max-width:1400px;
    align-items: start;
}

.partner-column {
    background:white;
    border-radius:24px;
    padding:48px;
    box-shadow:0 12px 35px rgba(2,6,23,0.25);
    color:#0f172a;
}

.partner-header {
    margin-bottom:40px;
}

.partner-title {
    margin:0 0 12px 0;
    font-size:36px;
    font-weight:900;
    line-height:1.2;
    letter-spacing:.01em;
    color:#0f172a;
    text-transform:uppercase;
    font-style:italic;
}

.partner-subtitle {
    margin:0;
    font-size:18px;
    opacity:.65;
    color:#0f172a;
    font-style:italic;
}

/* CAN CONTAINER */
.partner-can-container {
    margin-bottom:48px;
    text-align:center;
    position:relative;
    padding:40px 20px;
    background:rgba(238,91,212,0.08);
    border-radius:20px;
    border:2px dashed rgba(238,91,212,0.3);
}

.partner-can-image {
    max-width:180px;
    height:auto;
    display:inline-block;
    filter:drop-shadow(0 8px 20px rgba(238,91,212,0.2));
    transform:perspective(1000px) rotateY(-8deg);
    transition:all .4s cubic-bezier(0.32, 0.72, 0, 1);
}

.partner-can-container:hover .partner-can-image {
    transform:perspective(1000px) rotateY(8deg);
    filter:drop-shadow(0 12px 30px rgba(238,91,212,0.3));
}

.partner-can-label {
    margin-top:16px;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#EE5BD4;
}

/* QR ICON */
.partner-qr-icon {
    margin:0 auto 32px;
    width:160px;
    height:160px;
    background:linear-gradient(135deg, rgba(238,91,212,0.15), rgba(238,91,212,0.05));
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#EE5BD4;
    position:relative;
}

.qr-code-wrapper .partner-qr-icon {
    margin:0;
    width:100%;
    height:100%;
    background:transparent;
    border-radius:0;
}

.partner-qr-text {
    margin:0 0 48px;
    text-align:center;
    font-size:16px;
    line-height:1.6;
    color:#0f172a;
}

.partner-qr-text strong {
    color:#EE5BD4;
    font-size:18px;
}

/* TIMELINE */
.partner-timeline {
    position:relative;
    padding-left:0;
}

.timeline-line {
    position:absolute;
    left:14px;
    top:40px;
    bottom:0;
    width:2px;
    background:repeating-linear-gradient(
        to bottom,
        #EE5BD4,
        #EE5BD4 10px,
        transparent 10px,
        transparent 15px
    );
    z-index:0;
}

.timeline-step {
    position:relative;
    margin-bottom:40px;
    padding-left:70px;
    z-index:1;
}

.timeline-step:last-child {
    margin-bottom:0;
}

.timeline-node {
    position:absolute;
    left:-16px;
    top:0;
    width:54px;
    height:54px;
    background:white;
    border:3px solid #EE5BD4;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
    box-shadow:0 0 0 8px rgba(238,91,212,0.15);
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
}

.timeline-number {
    font-size:24px;
    font-weight:900;
    color:#EE5BD4;
    display:inline-block;
}

.timeline-step:hover .timeline-node {
    transform:scale(1.15);
    box-shadow:0 0 0 12px rgba(238,91,212,0.25), 0 8px 20px rgba(238,91,212,0.2);
}

.timeline-content {
    background:rgba(238,91,212,0.08);
    padding:20px;
    border-radius:16px;
    border-left:3px solid #EE5BD4;
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
}

.timeline-content h4 {
    margin:0 0 8px 0;
    font-size:18px;
    font-weight:800;
    color:#0f172a;
}

.timeline-content p {
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#0f172a;
    opacity:.75;
}

.timeline-step:hover .timeline-content {
    background:rgba(238,91,212,0.15);
    border-left-color:#EE5BD4;
    transform:translateX(4px);
}

/* QR EVENT ASSIGNMENT */
.qr-event-assignment {
    margin-top:24px;
    margin-right:-16px;
    margin-left:-16px;
    margin-bottom:-16px;
    padding:20px 16px;
    border-top:1px solid rgba(15,23,42,0.1);
    background:rgba(15,23,42,0.02);
    border-radius:0 0 20px 20px;
}

.qr-event-assignment h4 {
    margin:0 0 12px 0;
    font-size:14px;
    font-weight:800;
    color:#0f172a;
    text-transform:uppercase;
    letter-spacing:.02em;
}

.qr-event-assign-form {
    display:flex;
    flex-direction:column;
    gap:10px;
}

.qr-event-dropdown {
    width:100%;
    padding:10px 12px;
    border:1px solid rgba(15,23,42,0.2);
    border-radius:8px;
    background:white;
    color:#0f172a;
    font-size:13px;
    font-weight:600;
    transition:all .3s ease;
    font-family:inherit;
    box-sizing:border-box;
}

.qr-event-dropdown:hover {
    border-color:rgba(15,23,42,0.3);
}

.qr-event-dropdown:focus {
    outline:none;
    border-color:#EE5BD4;
    box-shadow:0 0 0 3px rgba(238,91,212,0.15);
}

.qr-assign-btn {
    width:100%;
    padding:10px 16px !important;
    font-size:12px !important;
}

.qr-assigned-events {
    margin-top:14px;
    padding:12px;
    background:white;
    border-radius:8px;
    border:1px solid rgba(238,91,212,0.2);
}

.qr-assigned-events h5 {
    margin:0 0 8px 0;
    font-size:12px;
    font-weight:800;
    color:#0f172a;
    text-transform:uppercase;
    letter-spacing:.02em;
}

.assigned-events-items {
    display:flex;
    flex-direction:column;
    gap:6px;
}

.assigned-events-items .event-item {
    padding:8px 12px;
    background:white;
    border-radius:8px;
    font-size:13px;
    color:#0f172a;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.event-item-remove-btn {
    background:none;
    border:none;
    color:#EE5BD4;
    cursor:pointer;
    font-size:16px;
    padding:0;
    transition:all .2s ease;
}

.event-item-remove-btn:hover {
    color:#d946c7;
}

.no-events-message {
    margin:0;
    font-size:13px;
    color:#0f172a;
    opacity:.65;
}

/* RESPONSIVE */
@media(max-width:1200px) {
    .partner-container {
        gap:32px;
    }
    
    .partner-column {
        padding:36px;
    }
    
    .partner-title {
        font-size:32px;
    }
}

@media(max-width:900px) {
    .partner-container {
        grid-template-columns:1fr;
        gap:24px;
    }
    
    .partner-column {
        padding:28px;
    }
    
    .partner-title {
        font-size:28px;
    }
    
    .partner-subtitle {
        font-size:16px;
    }
    
    .timeline-line {
        left:17px;
    }
    
    .timeline-node {
        left:-26px;
        width:50px;
        height:50px;
    }
    
    .timeline-number {
        font-size:20px;
    }
}

@media(max-width:600px) {
    .partner-column {
        padding:20px;
        border-radius:16px;
    }
    
    .partner-title {
        font-size:24px;
    }
    
    .partner-subtitle {
        font-size:14px;
    }
    
    .partner-can-container {
        padding:24px 12px;
        margin-bottom:32px;
    }
    
    .partner-can-image {
        max-width:140px;
    }
    
    .partner-header {
        margin-bottom:28px;
    }
    
    .partner-timeline {
        padding-left:0;
    }
    
    .timeline-line {
        left:13px;
        top:30px;
    }
    
    .timeline-node {
        left:-22px;
        width:44px;
        height:44px;
    }
    
    .timeline-number {
        font-size:18px;
    }
    
    .timeline-step {
        padding-left:54px;
        margin-bottom:32px;
    }
    
    .timeline-content {
        padding:16px;
    }
    
    .timeline-content h4 {
        font-size:16px;
    }
    
    .timeline-content p {
        font-size:13px;
    }
    
    .partner-qr-icon {
        width:120px;
        height:120px;
    }
    
    .qr-code-wrapper .partner-qr-icon {
        width:100%;
        height:100%;
    }
    
    .partner-qr-text {
        font-size:14px;
        margin-bottom:32px;
    }
}

/* QR CODE STATES */
.qr-state {
    animation:fadeInCard .5s cubic-bezier(0.32, 0.72, 0, 1);
}

/* QR Button */
.partner-qr-button {
    display:block;
    width:100%;
    padding:16px 32px;
    background:#EE5BD4;
    color:white;
    border:none;
    border-radius:12px;
    font-weight:800;
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:.04em;
    cursor:pointer;
    font-family:inherit;
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
    margin-top:24px;
    box-sizing:border-box;
}

.partner-qr-button:hover {
    background:#d946c7;
    box-shadow:0 0 20px var(--primary-glow);
    transform:scale(1.05);
}

.partner-qr-button:disabled {
    opacity:0.6;
    cursor:not-allowed;
    transform:scale(1);
}

/* Loading Spinner */
.qr-loading-spinner {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

.qr-loading-spinner .spinner {
    width:50px;
    height:50px;
    border:4px solid rgba(238,91,212,0.2);
    border-top-color:#EE5BD4;
    border-radius:50%;
    animation:spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform:rotate(360deg); }
}

/* Scan Count Pulse Animation */
@keyframes scan-count-pulse {
    0% {
        transform:scale(1);
        color:#EE5BD4;
    }
    50% {
        transform:scale(3);
        color:#F87FA5;
        text-shadow:0 0 20px rgba(238,91,212,0.5);
    }
    100% {
        transform:scale(1);
        color:#0f172a;
    }
}

.scan-count-pulse {
    animation:scan-count-pulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight:900;
}

/* Real QR Code Display */
.qr-code-container {
    position:relative;
    width:100%;
    padding-bottom:100%;
    margin:0 auto 24px;
    border-radius:0;
    overflow:hidden;
}

.qr-dose-background {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    z-index:1;
    display:block;
    background:white;
    filter:brightness(1);
}

.qr-code-wrapper {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
    padding:0;
}

.qr-code-wrapper .partner-qr-icon {
    width:45%;
    height:45%;
    max-width:200px;
    max-height:200px;
    margin:0;
    background:transparent;
    border-radius:0;
}

.qr-code-wrapper .partner-qr-image-real {
    width:45%;
    max-width:200px;
    height:auto;
    margin:0;
    box-shadow:0 4px 12px rgba(238,91,212,0.25);
}

.partner-qr-real {
    margin:0 auto 32px;
    text-align:center;
}

.partner-qr-image-real {
    max-width:300px;
    width:100%;
    height:auto;
    border-radius:5px;
    box-shadow:0 8px 24px rgba(238,91,212,0.2);
    transition:all .3s cubic-bezier(0.32, 0.72, 0, 1);
}

.partner-qr-image-real:hover {
    transform:scale(1.05);
    box-shadow:0 12px 32px rgba(238,91,212,0.3);
}

/* QR Code in Container */
.qr-code-wrapper .partner-qr-image-real:hover {
    transform:scale(1.08);
    box-shadow:0 6px 16px rgba(238,91,212,0.35);
}

/* QR Token Info */
.partner-qr-info {
    margin-top:24px;
    padding:16px;
    background:rgba(238,91,212,0.08);
    border-radius:12px;
    text-align:center;
}

.qr-token-info {
    margin:0;
    font-size:14px;
    color:#0f172a;
}

.qr-token-info code {
    font-family:monospace;
    background:white;
    padding:4px 8px;
    border-radius:6px;
    color:#EE5BD4;
    font-weight:800;
    font-size:15px;
}

/* Event Assignment Section */
.qr-event-assignment {
    margin-top:32px;
    padding:24px;
    background:rgba(238,91,212,0.05);
    border-radius:16px;
    border:1px solid rgba(238,91,212,0.1);
}

.qr-event-assignment h4 {
    margin:0 0 20px;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
}

.qr-event-assignment h5 {
    margin:0 0 12px;
    font-size:14px;
    font-weight:600;
    color:#64748b;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.qr-event-assign-form {
    display:flex;
    gap:12px;
    margin-bottom:24px;
}

.qr-event-dropdown {
    flex:1;
    padding:12px 16px;
    border:2px solid rgba(238,91,212,0.2);
    border-radius:12px;
    background:white;
    font-size:14px;
    color:#0f172a;
    transition:all .2s ease;
    cursor:pointer;
}

.qr-event-dropdown:focus {
    outline:none;
    border-color:#EE5BD4;
    box-shadow:0 0 0 3px rgba(238,91,212,0.1);
}

.qr-assign-btn {
    flex-shrink:0;
    padding:12px 24px;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}

/* Assigned Events List */
.qr-assigned-events {
    padding-top:24px;
    border-top:1px solid rgba(238,91,212,0.15);
}

.assigned-events-items {
    display:flex;
    flex-direction:column;
    gap:12px;
}

.no-events-message {
    padding:16px;
    text-align:center;
    color:#94a3b8;
    font-size:14px;
    font-style:italic;
}

.assigned-event-item {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 16px;
    background:white;
    border-radius:10px;
    border:1px solid rgba(238,91,212,0.15);
    transition:all .2s ease;
}

.assigned-event-item:hover {
    border-color:rgba(238,91,212,0.3);
    box-shadow:0 2px 8px rgba(238,91,212,0.1);
}

.assigned-event-info {
    display:flex;
    flex-direction:column;
    gap:4px;
    flex:1;
}

.assigned-event-title {
    font-size:15px;
    font-weight:600;
    color:#0f172a;
}

.assigned-event-date {
    font-size:13px;
    color:#64748b;
}

.remove-event-btn {
    flex-shrink:0;
    width:32px;
    height:32px;
    padding:0;
    border:none;
    background:rgba(239,68,68,0.1);
    color:#ef4444;
    border-radius:8px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .2s ease;
}

.remove-event-btn:hover {
    background:#ef4444;
    color:white;
    transform:scale(1.1);
}

.remove-event-btn svg {
    width:16px;
    height:16px;
}

/* Responsive QR States */
@media(max-width:600px) {
    .partner-qr-button {
        padding:14px 24px;
        font-size:14px;
    }
    
    .partner-qr-image-real {
        max-width:240px;
    }
}


/* BACKGROUND SLIDER */
.bg-slider {
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:calc(82vh - 66px);
    min-height:490px;
    max-height:760px;
    z-index:0;
    pointer-events:none;
    overflow:hidden;
}

.bg-slider::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(13,22,41,0) 40%,
        rgba(13,22,41,0.45) 70%,
        #0D1629 100%
    );
    z-index:1;
}

/* einzelne bg slides */
.bg-slide {
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity 1s ease;
    z-index:0;
}

/* ACTIVE */
.bg-slide.active {
    opacity:1;
}


/* diagonale clip form */
.bg-slide {
    clip-path:none;
}



/* Responsive */
@media(max-width:600px){
    .wrapper {
        padding-top:200px;
    }

    .horizontal-nav {
        gap:12px;
    }

    .nav-btn {
        padding:12px 20px;
        font-size:15px;
    }

    .nav-btn-howto {
        display:none;
    }

    .info-btn {
        display:block;
    }

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

    .events-filter-nav {
        justify-content:center;
    }

    .events-filter-label {
        display:none;
    }

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

    .card p {
        display:none;
    }

    .event-countdown-box {
        top:12px;
        right:12px;
        left:12px;
        width:auto;
        padding:16px;
        overflow:hidden;
        --mobile-collapse-progress:0;
        will-change:height;
    }

    .event-title {
        font-size:22px;
    }

    .event-countdown-time {
        font-size:22px;
    }

    .event-countdown-box.mobile-collapsing .event-date,
    .event-countdown-box.mobile-collapsing .event-countdown-time {
        opacity:calc(1 - var(--mobile-collapse-progress));
        transform:translateY(calc(-8px * var(--mobile-collapse-progress)));
    }

    .event-countdown-box.mobile-collapsed .event-date,
    .event-countdown-box.mobile-collapsed .event-countdown-time {
        opacity:0;
        margin:0;
        max-height:0;
        overflow:hidden;
        transform:translateY(-8px);
    }

    .event-countdown-box.mobile-collapsed .event-kicker-label {
        opacity:0;
        transform:translateY(-3px);
    }

    .event-countdown-box.mobile-collapsed .event-kicker-countdown {
        opacity:1;
        transform:translateY(0);
    }

    .bg-slider {
        top:0;
        height:600px;
        min-height:600px;
    }
}

/* LOGO FOOTER */
.logo-footer {
    text-align:center;
    margin-top:50px;
    padding:30px;
    opacity:1;
}

.logo-footer-meta {
    margin-top:14px;
    font-size:12px;
    line-height:1.5;
    color:rgba(255, 255, 255, 0.6);
}

.logo-footer-copy {
    margin:0;
}

.logo-footer-links {
    margin:4px 0 0;
}

.logo-footer-links a {
    color:inherit;
    text-decoration:none;
    transition:color 0.2s ease;
}

.logo-footer-links a:hover {
    color:rgba(255, 255, 255, 0.88);
}

.logo-footer-links span {
    display:inline-block;
    margin:0 8px;
    opacity:0.55;
}

.logo-footer .logo {
    transition:opacity .3s;
}

.logo-footer .logo:hover {
    opacity:1;
}

@media(max-width:400px){
    .banner {
        aspect-ratio:1 / 1;
        height:auto;
    }

    .logo-footer-meta {
        font-size:11px;
    }

    .logo-footer-links span {
        margin:0 6px;
    }
}

/* iOS-style Modal */
.wrapper {
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

body.modal-open {
    overflow: hidden;
}

.wrapper.modal-active {
    transform: scale(0.92);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.content-card {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    max-width: 900px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 120px);
    background: #0E172A;
    border-radius: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
}

.content-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.content-card-header {
    position: relative;
    padding: 32px 32px 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.content-card-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.content-card-zoom {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    padding: 0;
}

.content-card-zoom:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%) scale(1.04);
}

.content-card-zoom svg {
    width: 20px;
    height: 20px;
}

.content-card-image,
.content-card-body {
    transition: transform 0.25s ease, opacity 0.25s ease;
    will-change: transform, opacity;
}

.content-card.is-swiping-left .content-card-image,
.content-card.is-swiping-left .content-card-body {
    transform: translateX(-24px);
    opacity: 0.7;
}

.content-card.is-swiping-right .content-card-image,
.content-card.is-swiping-right .content-card-body {
    transform: translateX(24px);
    opacity: 0.7;
}

.content-card-image::before,
.content-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--content-card-image);
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.content-card-image::before {
    background-size: 200% auto;
    filter: blur(22px);
    transform: scale(1.05);
    opacity: 0;
}

.content-card-image::after {
    background-size: contain;
    z-index: 1;
}

.content-card-image.is-blur-bg::before {
    opacity: 0.55;
}

.content-card-header h2 {
    margin: 0;
    padding-right: 40px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.content-card-body {
    padding: 32px;
    overflow-y: visible;
    color: #fff;
    flex-grow: 1;
}

.content-card-body h2 {
    margin: 0 0 20px 0;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.content-card-body > div {
    line-height: 1.6;
    font-size: 16px;
}

.content-card-event-date {
    margin: 8px 0 16px;
    font-size: 15px;
    font-weight: 800;
    color: #EE5BD4;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.content-card-date-text {
    display: inline-flex;
    align-items: center;
}

.content-card-past-hint {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    width: 100%;
}

.content-card-duration-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    color: #EE5BD4;
    background: rgba(238, 91, 212, 0.14);
    border: 1px solid rgba(238, 91, 212, 0.45);
}

.content-card-rate-btn {
    margin-top: 10px;
    width: 100%;
    flex-basis: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 2px solid #EE5BD4;
    background: transparent;
    color: #EE5BD4;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.content-card-rate-btn:hover {
    background: rgba(238, 91, 212, 0.14);
    color: #ff79e3;
    transform: translateY(-1px);
}

.content-card-body p {
    margin: 16px 0;
    line-height: 1.6;
}

.content-card-form {
    margin-top: 28px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 2;
}

.content-card-form h3 {
    margin: 0 0 4px;
    font-size: 18px;
}

.content-card-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.content-card-form input,
.content-card-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
}

.content-card-form input::placeholder,
.content-card-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.content-card-form button {
    justify-self: start;
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    background: #EE5BD4;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.content-card-form button:hover {
    background: #d946c7;
}

.event-rating-future-hint {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(238, 91, 212, 0.16);
    border: 1px solid rgba(238, 91, 212, 0.34);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.content-card-edit {
    margin-top: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    transition: background 0.2s ease, transform 0.2s ease;
}

.content-card-edit:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.content-card-edit svg {
    width: 18px;
    height: 18px;
}

.content-card-publish {
    margin-top: 20px;
    border: none;
    border-radius: 12px;
    padding: 11px 16px;
    background: #EE5BD4;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease;
}

.content-card-publish:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.content-card-publish:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.content-card-share {
    margin-top: 20px;
}

.content-card-share-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.content-card-share-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.content-card-share-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.content-card-share-icon:hover {
    transform: translateY(-1px);
    background: rgba(238, 91, 212, 0.26);
    border-color: rgba(238, 91, 212, 0.45);
}

.content-card-share-icon svg {
    width: 18px;
    height: 18px;
}

.content-card-share-icon i {
    font-size: 18px;
    line-height: 1;
}

.content-card-share-snap {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

@media(min-width:900px) {
    .content-card {
        flex-direction: row;
        height: calc(100vh - 120px);
        overflow: hidden;
    }

    .content-card-image {
        width: 55%;
        height: 100%;
        background-size: contain;
    }

    .content-card-body {
        width: 45%;
        overflow-y: auto;
    }
}

@media(max-width:900px) {
    .content-card-image {
        height: clamp(420px, 75vh, 820px);
        background-size: contain;
    }
}

.content-card-close {
    position: fixed;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    z-index: 1000;
}

.content-card-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.content-card-close svg {
    width: 20px;
    height: 20px;
}

.content-card-close-mobile {
    display: none;
    position: fixed;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    padding: 0;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
}

.content-card-close-mobile.active {
    opacity: 1;
    pointer-events: all;
}

.content-card-close-mobile svg {
    width: 22px;
    height: 22px;
}

body.image-viewer-open {
    overflow: hidden;
}

.image-viewer {
    position: fixed;
    inset: 0;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 23, 42, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.image-viewer.active {
    opacity: 1;
    pointer-events: all;
}

.image-viewer-content {
    max-width: min(96vw, 1200px);
    max-height: 86vh;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.35s ease;
    border-radius: 18px;
}

.image-viewer.active .image-viewer-content {
    transform: scale(1);
    opacity: 1;
}

.image-viewer.closing .image-viewer-content {
    transform: scale(0.92);
    opacity: 0;
}

.image-viewer-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.55);
    display: block;
}

.image-viewer-content.is-art {
    padding: 18px;
}

.image-viewer-close {
    position: fixed;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
    z-index: 1003;
}

.image-viewer-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.04);
}

.image-viewer-close svg {
    width: 20px;
    height: 20px;
}

.content-card-body {
    color: #fff;
    padding: 24px 32px 32px 32px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
}

.content-card-body::-webkit-scrollbar {
    width: 8px;
}

.content-card-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.content-card-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.content-card-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.content-card-body p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Mobile iOS-style */
@media (max-width: 900px) {
    .content-card {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(100%);
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
        -webkit-overflow-scrolling: touch;
    }

    .content-card.active {
        transform: translateY(0);
        opacity: 1;
    }

    .content-card-image {
        height: 240px;
    }

    .wrapper.modal-active {
        transform: scale(0.97);
    }

    .content-card-header {
        padding: 56px 16px 20px 16px;
        border-bottom: none;
    }

    .content-card-header h2 {
        font-size: 24px;
        padding-right: 0;
    }

    .content-card-close {
        display: none;
    }

    .content-card-close-mobile {
        display: flex;
    }

    .content-card-zoom {
        width: 36px;
        height: 36px;
        bottom: 12px;
    }

    .content-card-zoom svg {
        width: 22px;
        height: 22px;
    }

    .image-viewer-close {
        width: 36px;
        height: 36px;
        top: 18px;
        right: 18px;
    }

    .image-viewer-close svg {
        width: 22px;
        height: 22px;
    }

    .content-card-body {
        padding: 20px 16px 24px 16px;
        overflow: visible;
    }
}

/* RESPONSIVE POSTS GRID */
@media(max-width:1024px) {
    .posts-grid {
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .posts-grid {
        grid-template-columns:1fr;
        gap:16px;
    }

    .post-card-image {
        height:280px;
    }

    .post-card-content {
        padding:16px;
    }

    .post-card-title {
        font-size:17px;
    }

    .post-card-excerpt {
        font-size:13px;
    }

    .post-card-date {
        font-size:14px;
    }

    .art-card {
        min-height:320px;
    }

    .art-card-image {
        height:240px;
    }

    .art-card-content {
        padding:16px;
    }

    .art-card-title {
        font-size:18px;
    }

    .nav-btn {
        font-size:75%;
    }
}

@media(max-width:900px) {
    .wrapper {
        padding-top:190px;
    }
    .nav-btn {
        font-size:90%;
    }
}
/* REGISTRATION FORM */
.registration-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(238, 91, 212, 0.2);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.registration-form h3 {
    margin: 0 0 24px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(238, 91, 212, 0.95);
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(238, 91, 212, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(238, 91, 212, 0.15);
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: rgba(238, 91, 212, 0.7);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--primary);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.registration-message {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.registration-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.registration-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.register-submit-btn {
    width: 100%;
    margin-top: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CREATE POST FEATURE */

/* Create Post Card Button */
.post-card-create {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.post-card-create:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.post-card-create:active {
    transform: scale(0.98);
}

.post-card-create-image {
    background: linear-gradient(135deg, var(--primary), #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    aspect-ratio: 1;
}

.post-card-create-image i {
    width: 48px;
    height: 48px;
    color: white;
    stroke-width: 3;
}

.post-card-create-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Create Post Modal Overlay */
.create-post-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.create-post-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Create Post Modal */
.create-post-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 95vh;
    background: none;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.create-post-modal.active {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
}

.create-post-card {
    width: 100%;
    max-width: 100%;
    background: #0f172a;
    border-radius: 20px 20px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 -10px 40px rgba(238, 91, 212, 0.1);
}

@media (min-width: 768px) {
    .create-post-card {
        max-width: 600px;
        border-radius: 20px;
        margin: auto 20px;
    }
}

.create-post-image-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary), #ec4899);
    border-radius: 20px 20px 0 0;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

@media (min-width: 768px) {
    .create-post-image-section {
        border-radius: 20px 20px 0 0;
        min-height: 320px;
    }
}

.create-post-image {
    width: 100%;
    max-width: 280px;
    height: 240px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    border: 3px dashed rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.create-post-image:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.02);
}

.create-post-image.has-image {
    border: none;
    background-color: transparent;
}

.create-post-image.has-image:hover {
    transform: scale(1.01);
}

.create-post-image.drag-over {
    background-color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.03);
}

.create-post-image i {
    width: 64px;
    height: 64px;
    color: white;
    stroke-width: 2;
}

.create-post-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.create-post-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.create-post-close:active {
    transform: scale(0.95);
}

.create-post-close i {
    width: 24px;
    height: 24px;
}

.create-post-body {
    padding: 30px 20px;
    overflow-y: auto;
    max-height: calc(95vh - 200px);
}

@media (min-width: 768px) {
    .create-post-body {
        max-height: calc(95vh - 160px);
    }
}

.create-post-body h2 {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input[type="text"],
.form-group input[type="datetime-local"],
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 14px;
    color: white;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.7)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group select option {
    background: #1e293b;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(238, 91, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.event-date-input-wrap {
    position: relative;
    width: 100%;
}

.event-date-display-input {
    cursor: pointer;
    padding-right: 46px !important;
}

.event-date-open-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: rgba(238, 91, 212, 0.18);
    color: #EE5BD4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.event-date-open-btn:hover {
    background: rgba(238, 91, 212, 0.28);
}

.event-date-open-btn i {
    width: 16px;
    height: 16px;
}

.event-date-picker-dialog {
    margin-top: 10px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.event-date-picker-dialog.active {
    display: flex;
}

.event-date-picker-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 10px 12px;
    color: #fff;
    font-family: inherit;
}

.event-date-picker-row {
    display: flex;
}

.event-duration-editor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.event-duration-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.event-duration-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.event-duration-btn {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(238, 91, 212, 0.45);
    background: rgba(238, 91, 212, 0.12);
    color: #EE5BD4;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.event-duration-btn:hover {
    background: rgba(238, 91, 212, 0.25);
}

.event-duration-btn i {
    width: 14px;
    height: 14px;
}

.event-duration-value {
    min-width: 64px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.event-date-save-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: linear-gradient(135deg, #EE5BD4, #ec4899);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-date-save-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(238, 91, 212, 0.28);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.form-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    margin-top: -8px;
}

/* Image Upload Area - Removed (merged with .create-post-image) */

/* Form Messages */
.form-messages {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
    animation: slideDown 0.2s ease;
}

.form-messages.error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

.form-messages.success {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block;
}

.form-messages.info {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: block;
}

/* Form Actions */
.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ec4899);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(238, 91, 212, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .create-post-card {
        border-radius: 20px 20px 0 0;
    }

    .create-post-body {
        padding: 20px;
    }

    .create-post-body h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .form-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ====== LOGIN MODAL ====== */
.login-card-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
}

.login-card-overlay.active {
    display: block;
}

.login-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 420px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-card.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.login-card-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.login-card-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.login-card-close:active {
    transform: scale(0.95) rotate(90deg);
}

.login-card-close i {
    width: 24px;
    height: 24px;
}

.login-card-body {
    padding: 50px 30px 30px;
    text-align: center;
}

.login-card-body h2 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.login-description,
.register-description {
    margin: 0 0 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

#loginForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#loginForm .form-group {
    text-align: left;
}

#loginForm .form-group input {
    color: #fff;
}

#loginForm .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-register-link,
.register-login-link {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.login-register-link a,
.register-login-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.login-register-link a:hover,
.register-login-link a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.login-forgot-link {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.login-forgot-link a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
}

.login-forgot-link a:hover {
    color: white;
    text-decoration: underline;
}

/* ====== PARTNER PLAN MODAL ====== */
.partner-plan-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
}

.partner-plan-overlay.active {
    display: block;
}

.partner-plan-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: min(92vw, 760px);
    background: rgba(30, 41, 59, 0.96);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    z-index: 999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-plan-card.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.partner-plan-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.partner-plan-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.partner-plan-close:active {
    transform: scale(0.95) rotate(90deg);
}

.partner-plan-close i {
    width: 24px;
    height: 24px;
}

.partner-plan-body {
    padding: 36px 30px 30px;
    text-align: center;
}

.partner-plan-body h2 {
    margin: -13px 0 24px;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.partner-plan-description {
    display: none;
}

.partner-plan-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.partner-plan-option {
    position: relative;
    padding: 22px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    color: white;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.partner-plan-option:hover {
    transform: translateY(-2px);
    border-color: rgba(238, 91, 212, 0.45);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.partner-plan-option.active {
    border-color: #EE5BD4;
    box-shadow: 0 0 0 2px rgba(238, 91, 212, 0.35), 0 18px 36px rgba(238, 91, 212, 0.16);
    background: linear-gradient(180deg, rgba(238, 91, 212, 0.18), rgba(255, 255, 255, 0.06));
}

.partner-plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.partner-plan-discount-pill {
    position: absolute;
    top: -2px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 34px;
    padding: 0 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #EE5BD4, #d946c7);
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 22px rgba(238, 91, 212, 0.35);
    z-index: 2;
}

.partner-plan-option h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.15;
    color: white;
}

.partner-plan-price {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #EE5BD4;
}

.partner-plan-early-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    margin: 8px 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(238, 91, 212, 0.5);
    background: rgba(238, 91, 212, 0.12);
    color: #ffd4f7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.partner-plan-price-old {
    margin: 6px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(255, 255, 255, 0.55);
}

.partner-plan-early-note {
    margin: 13px 0 13px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.partner-plan-frequency {
    margin: 6px 0 8px;
    font-size: 13px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.partner-plan-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-plan-features li {
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-plan-features li:last-child {
    border-bottom: none;
}

.partner-plan-features-mobile {
    display: none;
}

.partner-plan-features-mobile-title {
    margin: 0 0 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
}

.partner-plan-features-mobile-list {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-plan-features-mobile-list li {
    padding: 7px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-plan-features-mobile-list li:last-child {
    border-bottom: none;
}

.partner-plan-register-note {
    margin: 4px 0 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    text-align: center;
}

.partner-plan-register-link {
    margin: 0 0 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.partner-plan-register-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.partner-plan-register-link a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.partner-plan-payment-strip {
    text-align: center;
    margin: 12px 0 4px;
}
.partner-plan-payment-strip img {
    max-width: 100%;
    height: auto;
    opacity: 0.85;
}
@media (min-width: 481px) {
    .partner-plan-payment-strip img {
        max-width: 50%;
    }
}

.partner-plan-continue {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #EE5BD4, #d946c7);
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-plan-continue:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(238, 91, 212, 0.28);
}

.partner-plan-continue:active {
    transform: translateY(0);
}

/* ====== REGISTRATION MODAL ====== */
.register-card-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
}

.register-card-overlay.active {
    display: block;
}

.register-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 420px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.register-card.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.register-card-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.register-card-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.register-card-close:active {
    transform: scale(0.95) rotate(90deg);
}

.register-card-close i {
    width: 24px;
    height: 24px;
}

.register-card-body {
    padding: 50px 30px 30px;
    text-align: center;
}

.register-card-body h2 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

#registerForm {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

#registerForm .form-group {
    display: flex;
    flex-direction: column;
}

#registerForm .form-group input,
#registerForm .form-group select,
#registerForm .form-group textarea {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: inherit;
}

#registerForm .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#registerForm .form-group input:focus,
#registerForm .form-group select:focus,
#registerForm .form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(238, 91, 212, 0.1);
}

.form-group-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-group-checkbox label {
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
}

.email-validation-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.email-validation-wrapper input {
    flex: 1;
}

.email-validation-status {
    position: absolute;
    right: 12px;
    display: none;
    width: 20px;
    height: 20px;
    font-size: 18px;
}

.email-validation-status.checking {
    display: block;
    animation: spin 1s linear infinite;
}

.email-validation-status.valid {
    display: block;
    color: #10b981;
}

.email-validation-status.invalid {
    display: block;
    color: #ef4444;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.register-submit-btn {
    margin-top: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(238, 91, 212, 0.3);
}

.register-submit-btn:active {
    transform: translateY(0);
}

.login-submit-btn {
    margin-top: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Banner Login Button */
.login-button-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 30px;
}

.banner-login-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.banner-login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.banner-login-btn:active {
    transform: scale(0.95);
}

.banner-login-btn i {
    width: 20px;
    height: 20px;
    color: white;
}

/* Logout Button */
.logout-button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-top:-20px;
}

.logout-btn {
    padding: 10px 24px;
    background:rgba(30,41,59,0.58);
    backdrop-filter:blur(12px) saturate(130%);
    -webkit-backdrop-filter:blur(12px) saturate(130%);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logout-btn .lp-nav-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #EE5BD4;
    border-radius: 50%;
    box-sizing: border-box;
    animation: lpNavSpin .8s linear infinite;
}

.logout-btn.is-loading .logout-btn-label {
    display: none;
}

.logout-btn.is-loading .lp-nav-spinner {
    display: inline-block;
}

.logout-btn.is-loading {
    color: #EE5BD4;
}

@keyframes lpNavSpin {
    to { transform: rotate(360deg); }
}

.logout-btn:hover {
    background: rgba(238, 91, 212, 0.35);
    border-color: rgba(238, 91, 212, 0.7);
    transform: translateY(-1px);
}

.logout-btn:active {
    transform: translateY(0);
    opacity: 0.9;
}

@media (max-width: 480px) {
    .partner-plan-description {
        display: none;
    }

    .partner-plan-card {
        width: 95%;
        max-width: none;
        max-height: 92vh;
        overflow-y: auto;
    }

    .partner-plan-body {
        padding: 30px 20px 24px;
    }

    .partner-plan-body h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

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

    .partner-plan-price {
        font-size: 20px;
    }

    .partner-plan-option .partner-plan-frequency,
    .partner-plan-option .partner-plan-features {
        display: none;
    }

    .partner-plan-features-mobile {
        display: block;
        margin-top: -8px;
    }

    .partner-plan-features-mobile-title,
    .partner-plan-features-mobile-list li {
        text-align: center;
    }

    .partner-plan-features-mobile-title {
        margin-bottom: 5px;
    }

    .partner-plan-features-mobile-list {
        margin-bottom: 6px;
    }

    .partner-plan-features-mobile-list li {
        padding: 5px 0;
        line-height: 1.3;
    }

    .login-card {
        width: 95%;
        max-width: none;
    }

    .login-card-body {
        padding: 40px 20px 24px;
    }

    .login-card-body h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .register-card {
        width: 95%;
        max-width: none;
    }

    .register-card-body {
        padding: 40px 20px 24px;
    }

    .register-card-body h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    #registerForm {
        gap: 14px;
    }

    .banner-login-btn {
        width: 44px;
        height: 44px;
        bottom: 12px;
        left: 12px;
    }

    .banner-login-btn i {
        width: 22px;
        height: 22px;
    }
}
/* EVENT RATING FORM */
.event-rating-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.event-rating-form h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.rating-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-container > label {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

.rating-thumbs {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.thumb-btn {
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 2px solid rgba(238, 91, 212, 0.3);
    border-radius: 10px;
    background: transparent;
    color: #EE5BD4;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-btn:hover {
    opacity: 0.7;
    border-color: rgba(238, 91, 212, 0.6);
}

.thumb-btn.active {
    opacity: 1;
    border-color: #EE5BD4;
    background: rgba(238, 91, 212, 0.1);
}

.thumb-btn i {
    width: 24px;
    height: 24px;
}

.event-rating-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-rating-form label {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

.event-rating-form input[type="text"],
.event-rating-form input[type="email"],
.event-rating-form input[type="tel"],
.event-rating-form textarea {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Prevent iOS Safari auto-zoom on input focus */
@media (max-width: 768px) {
    .event-rating-form input[type="text"],
    .event-rating-form input[type="email"],
    .event-rating-form input[type="tel"],
    .event-rating-form textarea {
        font-size: 16px;
    }
}

.event-rating-form input[type="text"]:focus,
.event-rating-form input[type="email"]:focus,
.event-rating-form input[type="tel"]:focus,
.event-rating-form textarea:focus {
    outline: none;
    border-color: rgba(238, 91, 212, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(238, 91, 212, 0.1);
}

.event-rating-form textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.event-rating-form .checkbox {
    gap: 8px;
}

.event-rating-form .checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    cursor: pointer;
}

.event-rating-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #EE5BD4;
}

.event-rating-form .submit-btn {
    padding: 12px 20px;
    margin-top: 8px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #EE5BD4 0%, #d946a2 100%);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-rating-form .submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(238, 91, 212, 0.3);
}

.event-rating-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.email-status {
    font-size: 12px;
    margin-left: 6px;
    font-weight: 400;
    color: #10b981;
}

/* ART INQUIRY FORM (same styling as event rating form) */
.art-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.art-inquiry-form h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.art-inquiry-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.art-inquiry-form label {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

.art-inquiry-form input[type="text"],
.art-inquiry-form input[type="email"],
.art-inquiry-form input[type="tel"],
.art-inquiry-form textarea {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Prevent iOS Safari auto-zoom on input focus */
@media (max-width: 768px) {
    .art-inquiry-form input[type="text"],
    .art-inquiry-form input[type="email"],
    .art-inquiry-form input[type="tel"],
    .art-inquiry-form textarea {
        font-size: 16px;
    }
}

.art-inquiry-form input[type="text"]:focus,
.art-inquiry-form input[type="email"]:focus,
.art-inquiry-form input[type="tel"]:focus,
.art-inquiry-form textarea:focus {
    outline: none;
    border-color: rgba(238, 91, 212, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(238, 91, 212, 0.1);
}

.art-inquiry-form textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.art-inquiry-form .submit-btn {
    padding: 12px 20px;
    margin-top: 8px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #EE5BD4 0%, #d946a2 100%);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.art-inquiry-form .submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(238, 91, 212, 0.3);
}

.art-inquiry-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.art-inquiry-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 280px;
    padding: 28px 20px;
    text-align: center;
}

.art-inquiry-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #EE5BD4;
    background: rgba(238, 91, 212, 0.14);
    border: 1px solid rgba(238, 91, 212, 0.3);
    box-shadow: 0 12px 30px rgba(238, 91, 212, 0.18);
}

.art-inquiry-success-icon svg {
    width: 34px;
    height: 34px;
}

.art-inquiry-success h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.art-inquiry-success p {
    margin: 0;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.6;
}