/* ==========================================================================
   Kompan — globalni dizajn sistem
   Paleta i tipografija izvedeni iz landing dizajna (index_3).
   ========================================================================== */

:root {
    --bg: #0F0A14;
    --surface: #1A1228;
    --border: #2E1F45;
    --orange: #FF5722;
    --peach: #FF8A65;
    --yellow: #FCD34D;
    --purple: #7C3AED;
    --green: #10B981;
    --text: #F5EDE0;
    --muted: #8B7FA0;
    --card: #221533;

    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

/* Progressive enhancement: skrij fade-up tek ako JS može revealati. */
html.js .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .fade-up.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html.js .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* NAV ---------------------------------------------------------------------- */
.knav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(26, 16, 22, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--text);
    letter-spacing: -0.01em;
    text-decoration: none;
}

.logo-mark {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 9px;
}

.logo-word span {
    color: var(--orange);
}

.nav-cta {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--orange);
    color: #fff;
    padding: 9px 20px;
    border-radius: 100px;
    transition: opacity 0.2s, transform 0.15s;
}

.nav-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* HERO --------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 87, 34, 0.18);
    top: -150px;
    left: -150px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(156, 111, 228, 0.15);
    bottom: -100px;
    right: -80px;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: rgba(255, 213, 79, 0.1);
    top: 30%;
    left: 55%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(255, 213, 79, 0.1);
    border: 1.5px solid rgba(255, 213, 79, 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
}

.dot {
    width: 7px;
    height: 7px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.0;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-bottom: 24px;
}

.tilt-badge {
    display: inline-block;
    background: var(--yellow);
    color: #1A1016;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
    padding: 2px 20px 6px;
    transform: rotate(-2.5deg);
    border-radius: 16px;
    line-height: 1.05;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 500;
    color: var(--muted);
    display: block;
    margin-top: 20px;
    line-height: 1.65;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 44px;
    line-height: 1.8;
}

/* FORM --------------------------------------------------------------------- */
.form-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 460px;
}

.form-wrap input {
    flex: 1 1 200px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-wrap input::placeholder {
    color: var(--muted);
}

.form-wrap input:focus {
    border-color: var(--orange);
}

.btn {
    background: var(--orange);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.55;
    cursor: default;
    transform: none;
}

.form-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--muted);
}

.form-error {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--peach);
    font-weight: 600;
}

.success-msg {
    color: var(--green);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 12px;
}

/* SOCIAL PROOF ------------------------------------------------------------- */
.social-proof {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--muted);
}

.avatars {
    display: flex;
}

.avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    margin-left: -8px;
    background: var(--card);
}

.avatars span:first-child {
    margin-left: 0;
}

/* TICKER ------------------------------------------------------------------- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    background: var(--surface);
}

.ticker {
    display: flex;
    gap: 40px;
    animation: scroll 22s linear infinite;
    width: max-content;
}

.ticker-item {
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 14px;
}

.ticker-item span {
    color: var(--orange);
    font-size: 0.7rem;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* SECTIONS ----------------------------------------------------------------- */
.section {
    padding: 96px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 800;
    margin-bottom: 16px;
}

.section h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section > p {
    color: var(--muted);
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* SCENARIO CARDS ----------------------------------------------------------- */
.scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 52px;
}

.scenario-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 32px 26px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.scenario-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 87, 34, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.scenario-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.scenario-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
}

.scenario-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

.card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: block;
}

.scenario-card:nth-child(1) .card-dot { background: var(--orange); }
.scenario-card:nth-child(2) .card-dot { background: var(--purple); }
.scenario-card:nth-child(3) .card-dot { background: var(--yellow); }
.scenario-card:nth-child(4) .card-dot { background: var(--green); }

/* HOW IT WORKS ------------------------------------------------------------- */
.how-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px;
}

.how-h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 560px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 52px;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.step {
    padding: 36px 30px;
    background: var(--card);
}

.step + .step {
    border-left: 1.5px solid var(--border);
}

.step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
}

.step:nth-child(1) .step-num { color: var(--orange); }
.step:nth-child(2) .step-num { color: var(--purple); }
.step:nth-child(3) .step-num { color: var(--green); }

.step h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* MOCKUP ------------------------------------------------------------------- */
.mockup-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mockup-text h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 18px;
}

.mockup-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* EVENT CARD --------------------------------------------------------------- */
.event-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 28px;
    padding: 30px;
    position: relative;
}

.event-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--peach));
    border-radius: 28px 28px 0 0;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 8px;
    padding: 5px 12px;
}

.tag-event {
    background: rgba(255, 87, 34, 0.12);
    color: var(--orange);
}

.tag-open {
    background: rgba(77, 182, 172, 0.12);
    color: var(--green);
}

.event-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.event-detail {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
    padding: 16px 18px;
    background: var(--surface);
    border-radius: 14px;
    border-left: 4px solid var(--orange);
}

.event-organizer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.organizer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-display);
}

.organizer-info small {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
}

.organizer-info span {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-spots {
    font-size: 0.85rem;
    color: var(--muted);
}

.event-spots strong {
    color: var(--text);
    font-weight: 700;
}

.btn-small {
    background: var(--orange);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-small:hover {
    opacity: 0.85;
}

/* CTA ---------------------------------------------------------------------- */
.cta-bottom {
    background: var(--orange);
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '😊';
    position: absolute;
    font-size: 28vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    pointer-events: none;
    line-height: 1;
}

.cta-bottom h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 6vw, 4rem);
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.cta-bottom .form-wrap input {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.cta-bottom .form-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.cta-bottom .form-wrap input:focus {
    border-color: #fff;
}

.cta-bottom .btn {
    background: #fff;
    color: var(--orange);
}

.cta-bottom .form-note {
    color: rgba(255, 255, 255, 0.65);
}

.cta-bottom .form-error {
    color: #fff;
}

.cta-bottom .success-msg {
    color: #fff;
}

/* FOOTER ------------------------------------------------------------------- */
.kfooter {
    text-align: center;
    padding: 32px 24px;
    font-size: 0.82rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

/* RESPONSIVE --------------------------------------------------------------- */
@media (max-width: 760px) {
    .mockup-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .knav {
        padding: 14px 20px;
    }

    .step + .step {
        border-left: none;
        border-top: 1.5px solid var(--border);
    }
}

/* ==========================================================================
   Blazor template defaults (retematizirano na Kompan paletu)
   ========================================================================== */

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid var(--green);
}

.invalid {
    outline: 1px solid var(--orange);
}

.validation-message {
    color: var(--peach);
}

#blazor-error-ui {
    color: var(--text);
    background: var(--surface);
    border-top: 1px solid var(--border);
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem 1rem 1rem 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "Dogodila se greška.";
}

/* ==========================================================================
   App stranice (eventi, auth, kreiranje) — Blazor klijent
   ========================================================================== */

.knav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.applink {
    color: var(--muted);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.applink:hover {
    color: var(--text);
}

.verify-nag {
    color: var(--yellow);
}

.verify-nag:hover {
    color: var(--yellow);
    opacity: 0.85;
}

.app-page {
    min-height: 100vh;
    padding: 110px 24px 64px;
}

.app-container {
    max-width: 1100px;
    margin: 0 auto;
}

.app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.app-head h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.02em;
}

.filter {
    display: flex;
    gap: 10px;
}

.filter input {
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 12px;
    outline: none;
}

.filter input:focus {
    border-color: var(--orange);
}

.muted {
    color: var(--muted);
    font-size: 0.95rem;
}

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

/* AUTH / FORM CARD --------------------------------------------------------- */
.auth-card {
    max-width: 420px;
    margin: 0 auto;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
}

.auth-card h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.field {
    margin-bottom: 16px;
    flex: 1;
}

.field-row {
    display: flex;
    gap: 14px;
}

.field label {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 14px;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange);
}

.field textarea {
    resize: vertical;
}

/* EVENT DETAIL + CHAT ------------------------------------------------------ */
.event-title-link {
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.event-title-link:hover {
    color: var(--orange);
}

.detail-wrap {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    padding: 32px;
}

.detail-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    margin: 6px 0 4px;
}

.detail-spots {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 18px 0 12px;
}

.detail-spots strong {
    color: var(--text);
}

.participants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.participant-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1.5px solid var(--border);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 12px 22px;
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--text);
}

.in-team {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--green);
}

/* Na-upit: "na čekanju" pill na kartici liste */
.pending-pill {
    background: rgba(252, 211, 77, 0.15) !important;
    color: var(--yellow) !important;
    cursor: default;
    white-space: nowrap;
}

/* Na-upit: blok s objašnjenjem + poljem za poruku na detalju */
.request-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.request-hint {
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
}

.request-hint strong {
    color: var(--peach);
}

/* NOTIFIKACIJE (zvono u headeru) ------------------------------------------- */
.notif-wrap {
    position: relative;
    display: inline-flex;
}

.notif-bell {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 6px;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.notif-bell:hover {
    background: var(--surface);
}

.notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--bg);
}

.notif-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
}

.notif-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 201;
    width: 320px;
    max-width: 86vw;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
    padding: 8px;
}

.notif-head {
    font-family: var(--font-display);
    font-weight: 800;
    padding: 8px 10px;
    font-size: 0.95rem;
}

.notif-empty {
    padding: 10px;
    font-size: 0.9rem;
}

.notif-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.15s ease;
}

.notif-item:hover {
    background: var(--surface);
}

.notif-item.unread {
    background: rgba(255, 87, 34, 0.08);
}

.notif-ico {
    font-size: 1.05rem;
    line-height: 1.3;
}

.notif-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.notif-text {
    font-size: 0.88rem;
    line-height: 1.35;
}

.notif-time {
    font-size: 0.72rem;
    color: var(--muted);
}

/* CHAT NEPROČITANO (badge/pill) ------------------------------------------- */
.chat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chat-badge {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--purple);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.chat-pill {
    display: inline-block;
    margin: 6px 0 2px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.16);
    color: var(--purple);
    font-size: 0.78rem;
    font-weight: 800;
}

/* Inbox upita (stranica /upiti) */
.request-event {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 4px;
}

.request-event .applink {
    font-family: var(--font-display);
    font-weight: 800;
}

.request-event small {
    color: var(--muted);
    font-size: 0.8rem;
}

.chat {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
}

.chat-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 360px;
    overflow-y: auto;
}

/* PORUKE — ZASEBAN CHAT EKRAN (lista razgovora + pane) --------------------- */
.chat-screen {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 18px;
    align-items: start;
}

.chat-convos {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    max-height: 74vh;
    overflow-y: auto;
}

.chat-convos-head {
    padding: 16px 18px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    position: sticky;
    top: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.chat-convos-empty {
    padding: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-convo {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    text-align: left;
    color: var(--text);
    transition: background 0.15s ease;
}

.chat-convo:hover {
    background: var(--surface);
}

.chat-convo.active {
    background: rgba(255, 87, 34, 0.1);
}

.chat-convo-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--surface);
}

.chat-convo-info {
    flex: 1;
    min-width: 0;
}

.chat-convo-title {
    color: var(--text);
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-convo-sub {
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 2px;
}

.chat-pane {
    min-height: 60vh;
}

.chat-pane-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    background: var(--card);
    border: 1.5px dashed var(--border);
    border-radius: 20px;
    padding: 24px;
}

.chat-pane-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.chat-pane-head .applink {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
}

.chat-pane-sub {
    color: var(--muted);
    font-size: 0.85rem;
}

/* Chat u pane-u koristi raspoloživu visinu. */
.chat-pane .chat-body {
    max-height: min(58vh, 600px);
    min-height: 300px;
}

.chat-open-btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 760px) {
    .chat-screen {
        grid-template-columns: 1fr;
    }

    .chat-convos {
        max-height: 38vh;
    }
}

.chat-msg {
    max-width: 78%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 14px;
    align-self: flex-start;
}

.chat-msg.mine {
    align-self: flex-end;
    background: rgba(255, 87, 34, 0.12);
    border-color: rgba(255, 87, 34, 0.3);
}

.chat-sender {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--orange);
    margin-bottom: 2px;
}

.chat-msg.mine .chat-sender {
    color: var(--peach);
}

.chat-text {
    font-size: 0.92rem;
    line-height: 1.5;
    word-break: break-word;
}

.chat-time {
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 4px;
    text-align: right;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
}

.chat-input input {
    flex: 1;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 10px 14px;
    border-radius: 12px;
    outline: none;
}

.chat-input input:focus {
    border-color: var(--orange);
}

/* REQUESTS PANEL (organizator) -------------------------------------------- */
.requests-panel {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.request-row {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.request-who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.request-msg {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    padding: 10px 14px;
    background: var(--surface);
    border-radius: 12px;
    border-left: 3px solid var(--orange);
}

.request-actions {
    display: flex;
    gap: 10px;
}

.request-actions .btn-ghost {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* RATING ------------------------------------------------------------------- */
.rate-row {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.rate-who {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    min-width: 90px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--border);
    transition: color 0.15s, transform 0.1s;
    padding: 0 1px;
}

.star:hover {
    transform: scale(1.15);
}

.star.on {
    color: var(--yellow);
}

.rate-comment {
    flex: 1 1 160px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 9px 13px;
    border-radius: 12px;
    outline: none;
}

.rate-comment:focus {
    border-color: var(--orange);
}

.rate-done {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--green);
}

/* ==========================================================================
   EVENTS PAGE — moderni redizajn
   ========================================================================== */
.events-page {
    position: relative;
    overflow: hidden;
}

.page-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.page-blob-a {
    width: 520px;
    height: 520px;
    background: rgba(255, 87, 34, 0.16);
    top: -160px;
    right: -120px;
}

.page-blob-b {
    width: 460px;
    height: 460px;
    background: rgba(156, 111, 228, 0.14);
    bottom: -180px;
    left: -140px;
}

.events-page .app-container {
    position: relative;
    z-index: 1;
}

.events-hero {
    margin-bottom: 28px;
}

.events-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 10px;
}

.events-title span {
    color: var(--orange);
}

.events-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 460px;
}

/* FILTER BAR --------------------------------------------------------------- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.cat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cat-chip {
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.12s ease, border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}

.cat-chip:hover {
    transform: translateY(-2px);
    color: var(--text);
    border-color: rgba(255, 87, 34, 0.4);
}

.cat-chip.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.cat-emoji {
    font-size: 0.95em;
}

.city-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 4px 4px 4px 14px;
    transition: border-color 0.2s;
}

.city-search:focus-within {
    border-color: var(--orange);
}

.search-icon {
    font-size: 0.9rem;
    opacity: 0.7;
}

.city-search input {
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 8px 4px;
    outline: none;
    width: 120px;
}

.city-search input::placeholder {
    color: var(--muted);
}

/* INTERACTIVE EVENT CARD --------------------------------------------------- */
.event-card-i {
    position: relative;
    cursor: pointer;
    animation: cardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.event-grid .event-card-i:nth-child(2) { animation-delay: 0.05s; }
.event-grid .event-card-i:nth-child(3) { animation-delay: 0.1s; }
.event-grid .event-card-i:nth-child(4) { animation-delay: 0.15s; }
.event-grid .event-card-i:nth-child(5) { animation-delay: 0.2s; }
.event-grid .event-card-i:nth-child(6) { animation-delay: 0.25s; }

@keyframes cardIn {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.event-card-i:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 87, 34, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 87, 34, 0.15);
}

.card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.event-card-i > *:not(.card-link) {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.event-card-i .card-join {
    pointer-events: auto;
}

.event-card-i .event-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.15rem;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.event-card-i:hover .event-title {
    color: var(--orange);
}

/* Kategorija akcenti na stripe-u */
.event-card-i.cat-0 .event-stripe { background: linear-gradient(90deg, var(--orange), var(--peach)); }
.event-card-i.cat-1 .event-stripe { background: linear-gradient(90deg, var(--purple), #c39bff); }
.event-card-i.cat-2 .event-stripe { background: linear-gradient(90deg, var(--yellow), #ffe9a8); }
.event-card-i.cat-3 .event-stripe { background: linear-gradient(90deg, var(--green), #8fe0d8); }
.event-card-i.cat-4 .event-stripe { background: linear-gradient(90deg, var(--peach), var(--orange)); }
.event-card-i.cat-5 .event-stripe { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.event-card-i.cat-6 .event-stripe { background: linear-gradient(90deg, var(--muted), var(--border)); }

.tag-cat {
    background: rgba(245, 238, 232, 0.08);
    color: var(--text);
}

.tag-request {
    background: rgba(156, 111, 228, 0.14);
    color: var(--purple);
}

.tag-women {
    background: rgba(236, 72, 153, 0.16);
    color: #F472B6;
}

.tag-men {
    background: rgba(56, 138, 221, 0.16);
    color: #60A5FA;
}

.spots-pill {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--green);
    background: rgba(77, 182, 172, 0.12);
    padding: 6px 14px;
    border-radius: 100px;
}

.spots-pill strong {
    font-size: 1rem;
}

.spots-pill.full {
    color: var(--muted);
    background: rgba(154, 138, 148, 0.12);
}

.card-join {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* SKELETON ----------------------------------------------------------------- */
.skeleton-card {
    pointer-events: none;
}

.sk {
    background: linear-gradient(90deg, var(--surface) 25%, var(--border) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.3s linear infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    to { background-position: -200% 0; }
}

.sk-tag { width: 90px; height: 22px; border-radius: 100px; margin-bottom: 18px; }
.sk-title { width: 80%; height: 20px; margin-bottom: 12px; }
.sk-line { width: 60%; height: 14px; margin-bottom: 24px; }
.sk-org { width: 50%; height: 40px; border-radius: 12px; margin-bottom: 22px; }
.sk-foot { width: 100%; height: 36px; }

/* EMPTY STATE -------------------------------------------------------------- */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    max-width: 420px;
    margin: 0 auto;
}

.empty-emoji {
    font-size: 3.4rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.empty-state p {
    margin-bottom: 24px;
}

/* Globalni micro-interaction: pritisak gumba */
.btn:active, .btn-small:active, .cat-chip:active, .nav-cta:active {
    transform: scale(0.96);
}

/* ==========================================================================
   HOME — live landing dodaci
   ========================================================================== */
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 14px;
}

.hero-btn {
    text-decoration: none;
    font-size: 1rem;
    padding: 15px 30px;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-note .applink {
    color: var(--orange);
}

/* Live events sekcija */
.live-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
}

.live-all {
    color: var(--orange);
    white-space: nowrap;
}

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

/* Trust strip */
.trust-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.trust-ico {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 4px;
}

.trust-item small {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Bottom CTA ghost gumb na narančastoj */
.cta-bottom .btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
}

.cta-bottom .btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.cta-bottom-actions {
    margin-top: 8px;
}

/* ==========================================================================
   INDEX_5 — profinjena tema (override sloj)
   Tanke linije, mekše zaobljenosti, gradijent-glow gumbi, Bricolage + DM Sans.
   ========================================================================== */
:root {
    --orange-dark: #C0380F;
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Tješnji headinzi (Bricolage Grotesque vibe) */
h1, .events-title, .section h2, .how-h2, .mockup-text h2, .myev-h,
.detail-title, .auth-card h2, .modal-head h2, .empty-state h3, .cta-bottom h2 {
    letter-spacing: -0.035em;
}

/* --- Gumbi: gradijent-glow (index_5) --- */
.btn {
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.3);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
    background: var(--peach);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.4);
    opacity: 1;
}

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

.btn-small {
    border-radius: 10px;
    font-weight: 500;
    transition: background 0.2s, transform 0.15s, opacity 0.2s;
}

.btn-small:hover { background: var(--peach); transform: translateY(-1px); opacity: 1; }
.btn-small:active { transform: translateY(0); }
.btn-small:disabled { opacity: 0.5; }

.nav-cta {
    font-weight: 500;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--peach); transform: translateY(-1px); }

.btn-ghost {
    border-width: 1.5px;
    border-radius: 12px;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost:hover { transform: translateY(-2px); }

/* --- Kartice: tanke linije, mekše zaobljenosti --- */
.event-card,
.auth-card,
.scenario-card {
    border-radius: 20px;
    border-width: 1px;
}

.chat, .requests-panel, .detail-card { border-width: 1px; }

.event-card-i {
    border-radius: 20px;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}

.event-card-i:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 87, 34, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}

.scenario-card { transition: transform 0.25s ease, border-color 0.25s; }
.scenario-card:hover { transform: translateY(-4px); border-color: rgba(255, 87, 34, 0.3); }

/* --- Chipovi i tagovi: profinjeni --- */
.cat-chip {
    border-width: 1.5px;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}

.cat-chip:hover { transform: translateY(-1px); }
.cat-chip.active { transform: none; }

.tag {
    border-radius: 7px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

/* --- Inputi --- */
.field input, .field select, .field textarea,
.form-wrap input, .city-search, .filter input, .rate-comment {
    border-radius: 12px;
}

.organizer-avatar { border: none; }
.empty-emoji { display: inline-block; }

/* PARTICIPANT LINK + RATINGS LIST ----------------------------------------- */
.participant-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.2s, color 0.2s;
}

.participant-link:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.chip-rating {
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 800;
}

.ratings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
}

.rating-top {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}

.rating-stars {
    color: var(--yellow);
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-stars-empty {
    color: var(--border);
}

.rating-meta {
    font-size: 0.78rem;
    color: var(--muted);
}

.rating-comment {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
}

/* MOJI EVENTI -------------------------------------------------------------- */
.myev-h {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    margin: 40px 0 18px;
}

.reviews-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.load-more {
    padding: 14px 40px;
}

/* MOJI EVENTI — tabovi + modal recenzija ---------------------------------- */
.myev-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 26px;
}

.reviews-btn {
    font-size: 0.95rem;
    padding: 12px 22px;
    white-space: nowrap;
}

.myev-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.myev-actions .btn {
    white-space: nowrap;
}

.tabs {
    display: inline-flex;
    gap: 6px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.92rem;
    padding: 10px 22px;
    border-radius: 100px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, background 0.2s, transform 0.12s var(--bounce);
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    background: var(--orange);
    color: #fff;
}

.tab-count {
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.22);
    padding: 1px 8px;
    border-radius: 100px;
    min-width: 20px;
    text-align: center;
}

.tab-btn:not(.active) .tab-count {
    background: rgba(255, 255, 255, 0.07);
}

/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 6, 9, 0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.18s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 28px;
    width: 100%;
    max-width: 560px;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalIn 0.28s var(--bounce);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: none; }
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 0;
}

.modal-head h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
}

.modal-close {
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s, border-color 0.2s, transform 0.12s var(--bounce);
}

.modal-close:hover {
    color: var(--text);
    border-color: var(--orange);
    transform: rotate(90deg);
}

.modal-tabs {
    margin: 18px 24px 0;
}

.modal-body {
    padding: 18px 24px 24px;
    overflow-y: auto;
}

/* OGLASNI SLOTOVI ---------------------------------------------------------- */
.ad-slot {
    position: relative;
    border: 1.5px dashed var(--border);
    border-radius: 24px;
    background: rgba(245, 238, 232, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ad-tag {
    position: absolute;
    top: 12px;
    left: 14px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 100px;
}

.ad-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--muted);
    text-align: center;
    padding: 16px;
}

.ad-ico {
    font-size: 1.5rem;
    opacity: 0.6;
    margin-bottom: 2px;
}

.ad-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.85;
}

.ad-sub {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ad-banner {
    width: 100%;
    min-height: 116px;
}

.ad-card {
    min-height: 280px;
}

/* MOBILNI HAMBURGER NAV ---------------------------------------------------- */
.nav-burger {
    display: none;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: transform 0.12s var(--bounce);
}

.nav-burger:active {
    transform: scale(0.94);
}

.nav-burger span {
    display: block;
    width: 20px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
}

.nav-toggle-cb {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

@media (max-width: 760px) {
    .nav-burger {
        display: flex;
    }

    .knav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: var(--card);
        border: 2px solid var(--border);
        border-radius: 20px;
        padding: 14px;
        min-width: 210px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
        animation: menuIn 0.2s var(--bounce);
    }

    .knav-links.open,
    .nav-toggle-cb:checked ~ .knav-links {
        display: flex;
    }

    .knav-links .applink,
    .knav-links .nav-cta {
        padding: 11px 16px;
        text-align: center;
        border-radius: 12px;
    }

    .knav-links .nav-cta {
        box-shadow: 0 4px 0 var(--orange-dark);
    }
}

@keyframes menuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
}

/* ==========================================================================
   INDEX_5 LANDING — struktura (hero split, floating cards, how+demo, proof, CTA)
   ========================================================================== */
.lp-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 120px 80px 80px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
    top: -200px; right: -200px;
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.12) 0%, transparent 65%);
    bottom: -100px; left: 0;
    pointer-events: none;
}

.lp-left { position: relative; z-index: 2; }

.lp-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.25);
    color: var(--peach);
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 7px 16px; border-radius: 100px; margin-bottom: 30px;
}

.lp-pill-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }

.lp-h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: 1.0; letter-spacing: -0.04em;
    margin-bottom: 28px; color: var(--text);
}

.lp-h1 .hl { position: relative; display: inline-block; color: var(--orange); }
.lp-h1 .hl::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 4px; background: var(--orange); opacity: 0.3; border-radius: 2px; }
.lp-h1 .strike { position: relative; color: var(--muted); }
.lp-h1 .strike::after { content: ''; position: absolute; top: 50%; left: -4px; right: -4px; height: 3px; background: var(--orange); border-radius: 2px; }

.lp-sub { font-size: 1.1rem; color: var(--muted); max-width: 440px; margin-bottom: 40px; line-height: 1.75; }

.lp-trust { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.lp-trust-text { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }
.lp-trust-text strong { color: var(--text); font-weight: 500; }

/* Floating cards */
.lp-right { position: relative; height: 560px; display: flex; align-items: center; justify-content: center; }
.cards-stage { position: relative; width: 320px; height: 420px; perspective: 1200px; transition: transform 0.3s ease; }

.fc {
    position: absolute; width: 300px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 20px; padding: 22px; cursor: default;
    transition: transform 0.5s var(--bounce), box-shadow 0.4s;
    transform-style: preserve-3d; will-change: transform;
    text-decoration: none;
}
.fc:hover { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6); }
.fc-1 { top: 0; left: 0; transform: rotate(-6deg) translateY(10px); z-index: 1; }
.fc-2 { top: 20px; left: 10px; transform: rotate(-2deg); z-index: 2; }
.fc-3 { top: 10px; left: 5px; transform: rotate(2deg); z-index: 3; }
.cards-stage:hover .fc-1 { transform: rotate(-10deg) translateX(-30px) translateY(-20px); }
.cards-stage:hover .fc-2 { transform: rotate(0deg) translateY(-10px); }
.cards-stage:hover .fc-3 { transform: rotate(8deg) translateX(30px) translateY(-20px); }

.fc-stripe { height: 4px; border-radius: 4px; margin-bottom: 18px; }
.fc-1 .fc-stripe { background: var(--purple); }
.fc-2 .fc-stripe { background: var(--orange); }
.fc-3 .fc-stripe { background: var(--green); }
.fc-tags { display: flex; gap: 6px; margin-bottom: 14px; }
.fc-tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; border-radius: 6px; padding: 4px 10px; }
.tag-purple { background: rgba(124, 58, 237, 0.15); color: #A78BFA; }
.tag-orange { background: rgba(255, 87, 34, 0.12); color: var(--peach); }
.tag-green { background: rgba(16, 185, 129, 0.12); color: #34D399; }
.tag-req2 { background: rgba(252, 211, 77, 0.1); color: var(--yellow); }
.fc-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; margin-bottom: 5px; color: var(--text); }
.fc-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 14px; }
.fc-user { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.fc-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: #fff; font-family: var(--font-display); }
.av-a { background: linear-gradient(135deg, #FF5722, #7C3AED); }
.av-b { background: linear-gradient(135deg, #7C3AED, #10B981); }
.av-c { background: linear-gradient(135deg, #10B981, #FF5722); }
.fc-uname { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.fc-uname small { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 400; }
.fc-quote { font-size: 0.82rem; color: var(--muted); line-height: 1.6; padding: 12px 14px; background: rgba(255, 255, 255, 0.03); border-radius: 10px; border-left: 3px solid var(--orange); margin-bottom: 16px; }
.fc-footer { display: flex; align-items: center; justify-content: space-between; }
.fc-spots { font-size: 0.78rem; color: var(--muted); }
.fc-spots b { color: var(--text); }
.fc-btn { background: var(--orange); color: #fff; border: none; font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; padding: 8px 16px; border-radius: 8px; }

/* index_5 ticker */
.lp-ticker-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 15px 0; background: var(--surface); }
.lp-ticker { display: flex; animation: scroll 25s linear infinite; width: max-content; }
.lp-ticker-item { display: flex; align-items: center; gap: 14px; padding: 0 28px; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--muted); border-right: 1px solid var(--border); white-space: nowrap; }

/* Problem / scenarios */
.lp-section { max-width: 1140px; margin: 0 auto; padding: 120px 48px; }
.lp-eyebrow { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: 18px; }
.lp-h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.6rem); letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 18px; color: var(--text); }
.lp-p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; max-width: 500px; margin-bottom: 56px; }

.lp-scenarios { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.sc { background: var(--card); padding: 32px 26px; transition: background 0.25s; }
.sc:hover { background: #2A1A40; }
.sc-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.sc-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--text); }
.sc-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* How */
.lp-how { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-how-inner { max-width: 1140px; margin: 0 auto; padding: 120px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lp-steps { margin-top: 44px; }
.step-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); align-items: start; }
.step-item:last-child { border-bottom: none; }
.step-n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.04em; line-height: 1; padding-top: 4px; }
.step-n-1 { color: var(--orange); }
.step-n-2 { color: var(--purple); }
.step-n-3 { color: var(--green); }
.step-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text); }
.step-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.lp-how-right { position: sticky; top: 100px; }
.demo-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; }
.demo-header { background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 20px; display: flex; align-items: center; gap: 10px; }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.dd-r { background: #FF5F57; } .dd-y { background: #FFBD2E; } .dd-g { background: #28CA41; }
.demo-title-bar { flex: 1; text-align: center; font-size: 0.78rem; color: var(--muted); }
.demo-body { padding: 24px; }
.ep-stripe { height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--orange), var(--purple)); margin-bottom: 16px; }
.ep-tags { display: flex; gap: 6px; margin-bottom: 12px; }
.ep-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; margin-bottom: 4px; color: var(--text); }
.ep-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 14px; }
.ep-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; padding: 12px 14px; background: rgba(255, 255, 255, 0.03); border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; margin-bottom: 16px; }
.ep-user { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.ep-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: #fff; font-family: var(--font-display); }
.ep-uinfo small { display: block; font-size: 0.72rem; color: var(--muted); }
.ep-uinfo span { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.ep-footer { display: flex; align-items: center; justify-content: space-between; }
.ep-spots { font-size: 0.82rem; color: var(--muted); }
.ep-spots b { color: var(--text); }
.join-btn { background: var(--orange); color: #fff; border: none; font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; padding: 10px 20px; border-radius: 10px; cursor: default; display: inline-block; transition: all 0.2s; }
.join-btn:hover { background: var(--peach); }
.join-btn.joined { background: var(--green); animation: joinPop 0.4s var(--bounce); }
@keyframes joinPop { 0%{transform:scale(0.9)} 60%{transform:scale(1.08)} 100%{transform:scale(1)} }

/* Toast */
.lp-toast { position: fixed; bottom: 32px; right: 32px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); transform: translateY(100px); opacity: 0; transition: all 0.4s var(--bounce); z-index: 999; max-width: 300px; }
.lp-toast.show { transform: translateY(0); opacity: 1; }
.lp-toast-icon { font-size: 1.4rem; flex-shrink: 0; }
.lp-toast-body { font-size: 0.85rem; color: var(--text); line-height: 1.4; }
.lp-toast-body strong { display: block; font-weight: 500; margin-bottom: 2px; }
.lp-toast-body span { color: var(--muted); font-size: 0.78rem; }

/* Social proof */
.lp-proof { max-width: 1140px; margin: 0 auto; padding: 120px 48px; text-align: center; }
.lp-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.proof-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; text-align: left; transition: transform 0.25s, border-color 0.25s; }
.proof-card:hover { transform: translateY(-4px); border-color: rgba(255, 87, 34, 0.3); }
.proof-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 14px; }
.proof-text { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.proof-user { display: flex; align-items: center; gap: 10px; }
.proof-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: #fff; font-family: var(--font-display); }
.proof-av.pa { background: linear-gradient(135deg, #FF5722, #7C3AED); }
.proof-av.pb { background: linear-gradient(135deg, #7C3AED, #10B981); }
.proof-av.pc { background: linear-gradient(135deg, #10B981, #FF5722); }
.proof-name { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.proof-city { font-size: 0.75rem; color: var(--muted); }

/* CTA */
.lp-cta { margin: 0 48px 80px; background: linear-gradient(135deg, var(--purple) 0%, #4C1D95 50%, #1A1228 100%); border-radius: 28px; padding: 80px 60px; position: relative; overflow: hidden; text-align: center; }
.lp-cta::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255, 87, 34, 0.25) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.lp-cta-inner { position: relative; z-index: 1; }
.lp-cta h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.04em; line-height: 1.05; color: #fff; margin-bottom: 16px; }
.lp-cta p { color: rgba(255, 255, 255, 0.7); font-size: 1.05rem; margin-bottom: 36px; }
.lp-cta .btn-ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.lp-cta .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

/* WAITLIST FORMA (email + grad + uloga) */
.wl-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 480px;
}

.wl-row {
    display: flex;
    gap: 10px;
}

.wl-row > .wl-input { flex: 1 1 0; min-width: 0; }

.wl-input {
    width: 100%;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 12px;
}

.wl-input::placeholder { color: var(--muted); }
.wl-input:focus { border-color: var(--orange); outline: none; }

.wl-select { cursor: pointer; }
.wl-select:invalid, .wl-select option[value=""] { color: var(--muted); }

.wl-btn { width: 100%; }

/* Hero (tamna pozadina) — lijevo poravnato */
.lp-hero .lp-left .wl-form { margin: 0; }

/* Donji CTA (šarena pozadina) — bijela varijanta polja */
.lp-cta-form { display: flex; flex-direction: column; align-items: center; }
.lp-cta-form .wl-form { margin: 0 auto; }
.lp-cta-form .wl-input { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.lp-cta-form .wl-input::placeholder { color: rgba(255, 255, 255, 0.7); }
.lp-cta-form .wl-input:focus { border-color: #fff; }
.lp-cta-form .wl-select option { color: var(--text); }
.lp-cta-form .wl-btn { background: #fff; color: var(--orange); }
.lp-cta-form .form-note { color: rgba(255, 255, 255, 0.75); }
.lp-cta-form .success-msg { color: #fff; }

.lp-footer { text-align: center; padding: 32px 48px; font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--border); }

@media (max-width: 900px) {
    .lp-hero { grid-template-columns: 1fr; padding: 110px 24px 60px; }
    .lp-right { display: none; }
    .lp-scenarios { grid-template-columns: 1fr 1fr; }
    .lp-how-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-how-right { display: none; }
    .lp-proof-grid { grid-template-columns: 1fr; }
    .lp-cta { margin: 0 24px 60px; padding: 60px 28px; }
    .lp-section, .lp-proof { padding: 80px 24px; }
}

@media (max-width: 600px) {
    .lp-scenarios { grid-template-columns: 1fr; }
}

/* PROFILE ------------------------------------------------------------------ */
.profile-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.profile-bio {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.field-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* TASTE MATCH -------------------------------------------------------------- */
.taste {
    margin: 18px 0 4px;
}

.taste-match {
    color: var(--green);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
}

.participant-chip.shared {
    background: rgba(77, 182, 172, 0.15);
    border-color: rgba(77, 182, 172, 0.5);
    color: var(--green);
}

/* TOAST -------------------------------------------------------------------- */
.app-toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: min(90vw, 420px);
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    transform: translate(-50%, 140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.app-toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.app-toast.success {
    border-color: rgba(16, 185, 129, 0.55);
    box-shadow: 0 16px 44px rgba(16, 185, 129, 0.25);
}

.app-toast.error {
    border-color: rgba(255, 87, 34, 0.6);
    box-shadow: 0 16px 44px rgba(255, 87, 34, 0.25);
}

.app-toast.info {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 16px 44px rgba(124, 58, 237, 0.28);
}

.app-toast-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.app-toast-msg {
    line-height: 1.3;
}
