:root {
    --primary: #4c6ef5;
    --secondary: rgba(255, 255, 255, 0.7);
    --bg-gradient: linear-gradient(135deg, rgba(76,110,245,0.85), rgba(132,94,247,0.8));
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.25);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient) fixed;
    color: #1f2937;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
    border-radius: 20px;
}

.hero-section {
    padding: 4rem 0 5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

.hero-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #334155;
}

.btn-gradient {
    background: linear-gradient(135deg, #4c6ef5, #845ef7);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(76,110,245,0.35);
}

.form-section {
    min-height: calc(100vh - 240px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.form-control,
.form-select {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(76,110,245,0.25);
}

.alert {
    border-radius: 14px;
}

.footer {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.6);
}

.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1080;
    pointer-events: none;
    align-items: flex-end;
}

.ios-toast {
    min-width: 280px;
    max-width: 340px;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
    color: #1f2937;
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: auto;
}

.ios-toast.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ios-toast.hide {
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
}

.ios-toast-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ios-toast-success .ios-toast-status {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.45);
}

.ios-toast-error .ios-toast-status {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.45);
}

.ios-toast-body {
    flex: 1;
    line-height: 1.4;
}

@media (max-width: 575.98px) {
    .toast-container {
        top: auto;
        bottom: 1.25rem;
        right: 1rem;
        left: 1rem;
        align-items: stretch;
    }

    .ios-toast {
        min-width: unset;
        max-width: 100%;
    }
}

.ls-board-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1070;
    background: rgba(11, 17, 32, 0.82);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 25px 60px rgba(14, 19, 34, 0.45);
    border-bottom: 1px solid rgba(56, 61, 89, 0.55);
    overflow: visible;
}

.ls-board-neon {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.65;
    pointer-events: none;
    mix-blend-mode: lighten;
}

.ls-board-neon--1 {
    top: -110px;
    left: 10%;
    background: radial-gradient(circle, rgba(56,189,248,0.85), transparent 70%);
}

.ls-board-neon--2 {
    top: -140px;
    right: 8%;
    background: radial-gradient(circle, rgba(164,85,247,0.9), transparent 70%);
}

.ls-board-neon--3 {
    bottom: -140px;
    left: 40%;
    background: radial-gradient(circle, rgba(244,114,182,0.75), transparent 70%);
}

.ls-board-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.ls-board-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ls-board-logo {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    gap: 0.15rem;
}

.ls-board-logo__primary {
    opacity: 0.75;
}

.ls-board-logo__accent {
    color: #fb7185;
}

.ls-board-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.18);
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.4);
}

.ls-board-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(255,255,255,0.08);
    color: #fff;
    justify-content: center;
    align-items: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ls-board-toggle span {
    width: 1.3rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.ls-board-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.ls-board-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ls-board-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.ls-board-links-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ls-board-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.ls-board-link {
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    text-shadow: 0 0 16px rgba(255,255,255,0);
}

.ls-board-link__dot {
    display: inline-block;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    margin-right: 0.65rem;
    box-shadow: 0 0 14px currentColor;
}

.ls-board-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    background: linear-gradient(135deg, var(--link-color, #4c6ef5), rgba(255,255,255,0.75));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.ls-board-link:hover,
.ls-board-link:focus {
    color: #fff;
    text-shadow: 0 0 16px rgba(255,255,255,0.6);
}

.ls-board-link:hover::after,
.ls-board-link:focus::after {
    transform: scaleX(1);
}

.ls-board-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.ls-board-icon-btn {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148,163,184,0.35);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.ls-board-icon-btn:hover,
.ls-board-icon-btn:focus {
    background: rgba(255,255,255,0.14);
    border-color: rgba(148,163,184,0.55);
    transform: translateY(-2px);
}

.ls-board-icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 10%, rgba(96, 165, 250, 0.6), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: lighten;
}

.ls-board-icon-btn:hover .ls-board-icon-glow,
.ls-board-icon-btn:focus .ls-board-icon-glow {
    opacity: 1;
}

.ls-board-icon-btn--pulse {
    animation: lsPulse 2.8s infinite ease-in-out;
}

.ls-board-profile {
    position: relative;
}

.ls-board-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.ls-board-profile-btn:hover,
.ls-board-profile-btn:focus {
    border-color: rgba(148, 163, 184, 0.7);
    background: rgba(255, 255, 255, 0.14);
}

.ls-board-profile-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.6), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: lighten;
}

.ls-board-profile-btn:hover .ls-board-profile-glow,
.ls-board-profile-btn:focus .ls-board-profile-glow,
.ls-board-profile.open .ls-board-profile-glow {
    opacity: 1;
}

.ls-board-profile-btn svg {
    transition: transform 0.25s ease;
}

.ls-board-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.35);
}

.ls-board-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    background: rgba(10,16,28,0.96);
    color: #fff;
    border-radius: 16px;
    min-width: 200px;
    box-shadow: 0 26px 55px rgba(10, 12, 32, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 0.85rem 0.9rem;
    display: none;
}

.ls-board-profile.open .ls-board-profile-btn svg {
    transform: rotate(180deg);
}

.ls-board-dropdown__header {
    margin-bottom: 0.85rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.ls-board-dropdown__header span {
    display: block;
    font-weight: 600;
    color: #f472b6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.ls-board-dropdown__header small {
    color: rgba(255,255,255,0.6);
}

.ls-board-dropdown hr {
    margin: 0.6rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(76,110,245,0.4), rgba(132,94,247,0.0));
}

.ls-board-dropdown a {
    display: block;
    padding: 0.6rem 0.75rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
}

.ls-board-dropdown a:hover,
.ls-board-dropdown a:focus {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.ls-board-profile.open .ls-board-dropdown {
    display: block;
}

.ls-board-mobile-footer {
    display: none;
    margin-top: 1.5rem;
    gap: 0.75rem;
    flex-direction: column;
}

.ls-board-mobile-cta {
    padding: 1.1rem;
    border-radius: 18px;
    background: rgba(17,25,40,0.85);
    color: rgba(255,255,255,0.85);
    text-align: left;
}

.ls-board-mobile-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 0.6rem;
}

.ls-board-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1060;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ls-board-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .ls-board-nav__inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ls-board-toggle {
        display: flex;
    }

    .ls-board-links-wrapper {
        order: 3;
        width: 100%;
        background: rgba(8, 15, 34, 0.94);
        border-radius: 24px;
        border: 1px solid rgba(148, 163, 184, 0.25);
        padding: 1.25rem;
        flex-direction: column;
        display: none;
    }

    .ls-board-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .ls-board-links li {
        position: relative;
    }

    .ls-board-links .ls-board-link::after {
        display: none;
    }

    .ls-board-links-wrapper.open {
        display: flex;
    }

    .ls-board-profile {
        order: 2;
    }

    .ls-board-mobile-footer {
        display: flex;
    }

    .ls-board-actions {
        margin-left: auto;
    }
}

@keyframes lsPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45); }
    50% { box-shadow: 0 0 20px 8px rgba(96, 165, 250, 0.2); }
}

.main-with-board-nav {
    padding-top: 6.5rem;
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

.ls-dashboard-hero {
    position: relative;
    background: linear-gradient(140deg, rgba(76,110,245,0.28), rgba(132,94,247,0.2));
}

.ls-dashboard-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.45), transparent 55%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35), transparent 65%);
    pointer-events: none;
}

.ls-dashboard-hero .container {
    position: relative;
    z-index: 2;
}

.ls-dashboard-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    color: #1f2937;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.ls-dashboard-pill__dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4c6ef5, #845ef7);
    box-shadow: 0 0 12px rgba(76,110,245,0.55);
}

.ls-dashboard-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #0f172a;
    margin-top: 1.5rem;
}

.ls-dashboard-hero__lead {
    font-size: 1.1rem;
    color: rgba(15, 23, 42, 0.75);
    max-width: 32rem;
}

.ls-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
}

.ls-dashboard-stat-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.ls-dashboard-stat-card .label {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.6);
}

.ls-dashboard-stat-card .value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0.2rem 0;
}

.ls-dashboard-stat-card .sub {
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.55);
}

.ls-dashboard-hero-card {
    position: relative;
    overflow: hidden;
    background: rgba(15,23,42,0.76);
    border-radius: 26px;
    border: 1px solid rgba(148,163,184,0.25);
    color: rgba(255,255,255,0.9);
}

.ls-dashboard-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(76,110,245,0.35), transparent 60%);
    pointer-events: none;
}

.ls-dashboard-hero-card__badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ls-dashboard-hero-card__item {
    position: relative;
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.ls-dashboard-hero-card__item + .ls-dashboard-hero-card__item {
    margin-top: 1rem;
}

.ls-dashboard-hero-card__item:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.ls-dashboard-hero-card__item h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.ls-dashboard-hero-card__item p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 1rem;
}

.ls-dashboard-hero-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.ls-dashboard-hero-card__meta .tag {
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    font-weight: 600;
}

.ls-section {
    background: rgba(255,255,255,0.65);
}

.ls-section:nth-of-type(even) {
    background: rgba(248,250,252,0.85);
}

.ls-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ls-section-kicker {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(76,110,245,0.12);
    color: #4c6ef5;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.ls-section-heading h2 {
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    color: #0f172a;
    margin: 0;
}

.ls-audio-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(148,163,184,0.25);
    background: rgba(255,255,255,0.92);
    transition: transform 0.25s ease;
}

.ls-audio-card:hover {
    transform: translateY(-6px);
}

.ls-audio-card__badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4c6ef5;
    background: rgba(76,110,245,0.12);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.ls-audio-card__duration {
    font-size: 0.85rem;
    color: rgba(15,23,42,0.6);
}

.ls-audio-wave {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.ls-audio-wave span {
    display: block;
    width: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #4c6ef5, #845ef7);
}

.ls-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.ls-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    margin: 0;
    background: rgba(15,23,42,0.85);
}

.ls-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ls-gallery-item:hover img {
    transform: scale(1.05);
}

.ls-gallery-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(0deg, rgba(15,23,42,0.9), transparent);
}

.ls-radar-card {
    border-radius: 26px;
    border: 1px solid rgba(148,163,184,0.25);
    background: rgba(15,23,42,0.82);
    color: rgba(255,255,255,0.85);
}

.ls-radar-step + .ls-radar-step {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(148,163,184,0.35);
}

.ls-radar-step {
    display: flex;
    gap: 1.5rem;
}

.ls-radar-time span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    font-weight: 700;
    font-size: 1.1rem;
}

.ls-radar-chip {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ls-club-card {
    border-radius: 24px;
    border: 1px solid rgba(148,163,184,0.25);
    background: rgba(255,255,255,0.92);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ls-club-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.18);
}

.ls-club-chip {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4c6ef5;
    background: rgba(76,110,245,0.12);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.ls-progress {
    height: 6px;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 999px;
    overflow: hidden;
}

.ls-progress__bar {
    height: 100%;
    background: linear-gradient(135deg, #4c6ef5, #845ef7);
    border-radius: inherit;
}

@media (max-width: 767.98px) {
    .ls-section-heading {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .ls-dashboard-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .ls-radar-step {
        flex-direction: column;
        gap: 1rem;
    }

    .ls-radar-time span {
        width: 3.5rem;
        height: 3.5rem;
    }
}
