/* Toast notifications */
.akv-toast-stack {
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}
.akv-toast {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #fff;
    background: rgba(20, 22, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.akv-toast.is-visible { opacity: 1; transform: translateY(0); }
.akv-toast--success { border-color: rgba(37, 211, 102, 0.45); }
.akv-toast--error { border-color: rgba(220, 53, 69, 0.5); }
.akv-toast--info { border-color: rgba(0, 242, 254, 0.4); }

/* Skeleton loaders */
@keyframes akv-skel-pulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.85; }
}
.akv-skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 100%);
    background-size: 200% 100%;
    animation: akv-skel-shimmer 1.4s ease infinite;
    border-radius: 12px;
}
@keyframes akv-skel-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.akv-skeleton-card { height: 180px; margin-bottom: 12px; }
.akv-skeleton-line { height: 14px; margin-bottom: 8px; }
.akv-skeleton-line.w-60 { width: 60%; }
.akv-skeleton-line.w-40 { width: 40%; }

/* Share button */
.akv-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 0.82rem;
    border: 1px solid rgba(0, 242, 254, 0.35);
    background: rgba(0, 242, 254, 0.08);
    color: #00f2fe;
    cursor: pointer;
    text-decoration: none;
}
.akv-share-btn:hover { background: rgba(0, 242, 254, 0.16); color: #fff; }

/* Promo video embed */
.akv-promo-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0b0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}
.akv-promo-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Venue video carousel */
.akv-venue-videos .carousel-item video {
    width: 100%;
    max-height: 420px;
    border-radius: 12px;
    background: #000;
}

/* Link-in-bio */
.link-bio-page {
    min-height: 100vh;
    background: radial-gradient(ellipse at top, #14161c 0%, #0a0b0e 55%);
    padding: 24px 16px 48px;
}
.link-bio-card {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}
.link-bio-avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 242, 254, 0.45);
    margin-bottom: 12px;
}
.link-bio-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #e8edf5;
    transition: transform 0.15s ease, border-color 0.2s ease;
}
.link-bio-btn:hover { transform: translateY(-2px); border-color: rgba(0, 242, 254, 0.4); color: #fff; }
.link-bio-btn.is-primary {
    background: linear-gradient(90deg, #ff0050, #00f2fe);
    border: none;
    color: #fff;
}
