:root {
    --pk-primary: #18b7d6;
    --pk-primary-strong: #0ea6c4;
    --pk-primary-soft: #dff8ff;
    --pk-secondary: #dcd9ff;
    --pk-secondary-soft: #f2f0ff;
    --pk-accent: #7bd96a;
    --pk-accent-soft: #edfbe8;
    --pk-danger: #ef7178;
    --pk-danger-soft: #ffe8eb;
    --pk-warning: #f7c650;
    --pk-warning-soft: #fff4d8;
    --pk-text: #253244;
    --pk-muted: #728096;
    --pk-border: #e7ebf4;
    --pk-card: #ffffff;
    --pk-surface: #f6f8fc;
    --pk-shadow: 0 20px 50px rgba(41, 61, 102, 0.10);
    --pk-radius: 24px;
    --pk-radius-sm: 16px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body.pk-body {
    margin: 0;
    background: radial-gradient(circle at top left, rgba(24,183,214,0.16), transparent 28%), radial-gradient(circle at top right, rgba(220,217,255,0.32), transparent 30%), linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
    color: var(--pk-text);
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pk-site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pk-main {
    flex: 1 0 auto;
}

a {
    text-decoration: none;
}

.culture-link
{
    width:230px;
}
.pk-navbar {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(231,235,244,0.9);
    box-shadow: 0 8px 24px rgba(49, 76, 122, 0.05);
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

.pk-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    color: var(--pk-text);
}

.pk-brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, var(--pk-primary), #68d8ee);*/
    color: #fff;
    box-shadow: 0 10px 24px rgba(24,183,214,0.30);
    font-size: 1rem;
}

.pk-brand-text {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.pk-nav .nav-link {
    color: var(--pk-muted);
    font-weight: 600;
    padding: 0.65rem 0.95rem !important;
    border-radius: 999px;
}

    .pk-nav .nav-link:hover,
    .pk-nav .nav-link:focus {
        color: var(--pk-text);
        background: rgba(24,183,214,0.08);
    }

.pk-impersonation-bar {
    background: linear-gradient(90deg, #fff8d8, #fff2c2);
    border-bottom: 1px solid #f2df8a;
    padding: 0.6rem 0;
}

.container {
    position: relative;
    z-index: 2;
}

.card,
.pk-card {
    background: var(--pk-card);
    border: 1px solid rgba(231,235,244,0.95);
    border-radius: var(--pk-radius) !important;
    box-shadow: var(--pk-shadow);
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.7rem 1.2rem;
    border-width: 1px;
}

.btn-dark {
    background: linear-gradient(135deg, var(--pk-text), #34445e);
    border-color: transparent;
}

    .btn-dark:hover {
        background: linear-gradient(135deg, #1f2a39, #2c3a52);
    }

.btn-outline-dark,
.btn-outline-secondary,
.btn-outline-primary {
    background: #fff;
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid var(--pk-border);
    box-shadow: none !important;
    background: #fff;
}

textarea.form-control {
    min-height: auto;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(24,183,214,0.45);
}

.alert {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(41, 61, 102, 0.06);
}

.badge {
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    font-weight: 700;
}

.text-muted {
    color: var(--pk-muted) !important;
}

.shadow-sm {
    box-shadow: var(--pk-shadow) !important;
}

.rounded-4 {
    border-radius: var(--pk-radius) !important;
}

.page-wrapper {
    min-height: calc(100vh - 140px);
}

.pk-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pk-section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--pk-text);
}

.pk-section-subtitle {
    font-size: 1.05rem;
    color: var(--pk-muted);
    max-width: 720px;
}

.pk-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    background: var(--pk-primary-soft);
    color: var(--pk-primary-strong);
}

.pk-hero {
    position: relative;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}

    .pk-hero::before,
    .pk-hero::after {
        content: "";
        position: absolute;
        border-radius: 999px;
        filter: blur(6px);
        z-index: 1;
    }

    .pk-hero::before {
        width: 420px;
        height: 420px;
        background: rgba(24,183,214,0.18);
        top: -120px;
        left: -100px;
    }

    .pk-hero::after {
        width: 380px;
        height: 380px;
        background: rgba(220,217,255,0.48);
        right: -90px;
        top: 20px;
    }

.pk-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--pk-text);
}

.pk-hero-text {
    font-size: 1.1rem;
    color: var(--pk-muted);
    max-width: 620px;
    margin-bottom: 1.75rem;
}

.pk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pk-phone-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.pk-phone {
    width: 250px;
    background: #fff;
    border-radius: 34px;
    padding: 14px;
    box-shadow: 0 24px 60px rgba(40, 67, 116, 0.18);
    border: 1px solid rgba(255,255,255,0.65);
    position: absolute;
}

    .pk-phone:nth-child(1) {
        transform: rotate(-12deg) translateX(-90px);
        z-index: 1;
    }

    .pk-phone:nth-child(2) {
        transform: translateY(-12px);
        z-index: 3;
    }

    .pk-phone:nth-child(3) {
        transform: rotate(10deg) translateX(100px);
        z-index: 2;
    }

.pk-phone-screen {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--pk-primary) 0%, #6fd0e8 32%, #edf5ff 33%, #efeaff 100%);
    min-height: 450px;
    position: relative;
}

.pk-phone-wave {
    position: absolute;
    left: -10%;
    right: -10%;
    top: 32%;
    height: 80px;
    background: rgba(255,255,255,0.65);
    filter: blur(10px);
    border-radius: 999px;
}

.pk-phone-content {
    position: relative;
    z-index: 2;
    padding: 1.1rem;
    text-align: center;
}

.pk-avatar {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 999px;
    border: 4px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 26px rgba(47, 82, 138, 0.14);
}

.pk-mini-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 18px;
    padding: 0.85rem;
    margin-top: 0.9rem;
    text-align: left;
}

.pk-feature-card {
    height: 100%;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,1));
    border: 1px solid var(--pk-border);
    border-radius: 24px;
    box-shadow: var(--pk-shadow);
}

.pk-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pk-primary-soft);
    color: var(--pk-primary-strong);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pk-feature-title {
    font-weight: 800;
    margin-bottom: 0.55rem;
    color: var(--pk-text);
}

.pk-feature-text {
    color: var(--pk-muted);
    margin-bottom: 0;
}

.pk-surface-band {
    background: linear-gradient(135deg, rgba(24,183,214,0.08), rgba(220,217,255,0.22));
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid rgba(231,235,244,0.95);
}

.pk-color-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.95);
    box-shadow: 0 4px 12px rgba(26, 42, 70, 0.12);
}

.pk-footer {
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.pk-footer-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.98));
    border: 1px solid rgba(231,235,244,0.95);
    border-radius: 28px;
    box-shadow: var(--pk-shadow);
    padding: 1.5rem 1.75rem;
}

.pk-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.pk-footer-text {
    color: var(--pk-muted);
    max-width: 520px;
}

.pk-footer-link {
    color: var(--pk-muted);
    font-weight: 600;
}

    .pk-footer-link:hover {
        color: var(--pk-text);
    }

.pk-public-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 2rem 0 4rem;
    z-index: 1;
}

    .pk-public-shell::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, var(--pk-primary) 0%, #6fd0e8 14%, #dfefff 14%, #ece9ff 85%, var(--pk-primary) 85%);
        z-index: 0;
        pointer-events: none;
    }

    .pk-public-shell::after {
        content: "";
        position: absolute;
        left: -5%;
        right: -5%;
        top: 14%;
        height: 120px;
        background: rgba(255,255,255,0.55);
        filter: blur(14px);
        border-radius: 999px;
        z-index: 0;
        pointer-events: none;
    }

.pk-public-container {
    position: relative;
    z-index: 2;
}

.pk-public-card {
    max-width: 880px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(245, 248, 255, 0.82);
    box-shadow: 0 24px 60px rgba(41, 61, 102, 0.16);
    border: 1px solid rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
}

.pk-public-top {
    background: linear-gradient(180deg, rgba(24,183,214,0.72), rgba(111,208,232,0.78));
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

    .pk-public-top::after {
        content: "";
        position: absolute;
        left: 8%;
        right: 8%;
        bottom: -18px;
        height: 64px;
        background: rgba(255,255,255,0.68);
        filter: blur(10px);
        border-radius: 999px;
    }

.pk-public-avatar {
    width: 156px;
    height: 156px;
    object-fit: cover;
    border-radius: 999px;
    border: 4px solid rgba(255,255,255,0.9);
    box-shadow: 0 20px 40px rgba(45, 80, 134, 0.18);
    position: relative;
    z-index: 2;
}

.pk-public-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 1rem 0 0.3rem;
    color: #1e2736;
    position: relative;
    z-index: 2;
}

.pk-public-subtitle {
    color: rgba(37,50,68,0.75);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.pk-public-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.pk-tab-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pk-tab-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(231,235,244,0.9);
    border-radius: 18px;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--pk-text);
}

.pk-lost-banner {
    background: linear-gradient(180deg, var(--pk-danger-soft), #ffdfe3);
    border: 1px solid #f7c6cc;
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

    .pk-lost-banner h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 0.75rem;
        color: #5a1820;
    }

.pk-panel {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(231,235,244,0.95);
    border-radius: 22px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.pk-panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--pk-text);
}

.pk-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.pk-info-card {
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--pk-border);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    min-height: 88px;
}

.pk-info-label {
    font-size: 0.84rem;
    color: var(--pk-muted);
    margin-bottom: 0.35rem;
}

.pk-info-value {
    font-weight: 800;
    color: var(--pk-text);
    line-height: 1.35;
}

.pk-info-card.pk-full {
    grid-column: 1 / -1;
}

.pk-public-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}

.pk-public-photo {
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--pk-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(41, 61, 102, 0.07);
}

    .pk-public-photo img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

.pk-public-photo-caption {
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pk-text);
    text-align: center;
}

.pk-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

    .pk-status-chip.primary {
        background: var(--pk-primary-soft);
        color: var(--pk-primary-strong);
    }

    .pk-status-chip.success {
        background: var(--pk-accent-soft);
        color: #2f8d35;
    }

    .pk-status-chip.danger {
        background: var(--pk-danger-soft);
        color: #b33b47;
    }

    .pk-status-chip.warning {
        background: var(--pk-warning-soft);
        color: #ac7a08;
    }

.pagination .page-link {
    border-radius: 0.8rem !important;
    margin: 0 0.15rem;
    border: 1px solid var(--pk-border);
    color: var(--pk-text);
    min-width: 42px;
    text-align: center;
    background: #fff;
}

.pagination .page-item.active .page-link {
    background: var(--pk-text);
    border-color: var(--pk-text);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background: #fff;
}

img {
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    .pk-public-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .pk-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .pk-phone-stack {
        min-height: 420px;
        margin-top: 1rem;
    }

    .pk-phone {
        width: 210px;
    }

        .pk-phone:nth-child(1) {
            transform: rotate(-10deg) translateX(-70px);
        }

        .pk-phone:nth-child(3) {
            transform: rotate(9deg) translateX(75px);
        }

    .pk-tab-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .pk-hero {
        padding-top: 3.2rem;
        padding-bottom: 3.5rem;
    }

    .pk-phone-stack {
        min-height: 420px;
    }

    .pk-phone:nth-child(1),
    .pk-phone:nth-child(3) {
        display: none;
    }

    .pk-public-top {
        padding: 1.5rem 1rem 1rem;
    }

    .pk-public-body {
        padding: 1rem;
    }

    .pk-info-grid {
        grid-template-columns: 1fr;
    }

    .pk-public-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

.pk-header {
    position: relative;
    z-index: 5000;
}

.pk-navbar {
    position: relative;
    z-index: 5001;
}

.navbar-collapse {
    position: relative;
    z-index: 5001;
}

.dropdown,
.dropdown-menu {
    z-index: 6000;
}

.dropdown-menu {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 50, 68, 0.14);
}

.pk-main {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.pk-hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.qrcode canvas {
    width: 200px;
    height: 200px;
    text-align: center;
}

.pagination .page-link {
    border-radius: 0.7rem !important;
    margin: 0 0.15rem;
    border: 1px solid #dee2e6;
    color: #212529;
    min-width: 42px;
    text-align: center;
}

.pagination .page-item.active .page-link {
    background-color: #212529;
    border-color: #212529;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #fff;
}

.pk-public-photo {
    border: 0;
    padding: 0;
    background: transparent;
    text-align: inherit;
    width: 100%;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .pk-public-photo:hover {
        transform: translateY(-3px);
    }

.pk-gallery-modal {
    background: rgba(255, 255, 255, 0.98);
    border: 0;
    border-radius: 28px;
    overflow: hidden;
}

.pk-gallery-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pk-gallery-image {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 20px;
    background: #f8f9fc;
}

.pk-gallery-caption {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--pk-text);
}

.pk-gallery-swiper {
    padding-bottom: 3rem;
}

.pk-gallery-modal .swiper-button-prev,
.pk-gallery-modal .swiper-button-next {
    color: var(--pk-text);
}

.pk-gallery-modal .swiper-pagination-bullet-active {
    background: var(--pk-primary);
}
.modal-backdrop.show {
    display:none;
}

.pk-video-card {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: block;
}

.pk-video-thumb {
    position: relative;
    height: 240px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(41, 61, 102, 0.12);
    border: 1px solid rgba(231,235,244,0.95);
    background: linear-gradient(135deg, rgba(24,183,214,0.2), rgba(220,217,255,0.35));
}

    .pk-video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform 0.35s ease;
    }

.pk-video-card:hover .pk-video-thumb img {
    transform: scale(1.04);
}

.pk-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 31, 48, 0.10), rgba(19, 31, 48, 0.28));
}

.pk-video-play-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pk-video-play {
    position: relative;
    z-index: 3;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--pk-primary-strong);
    font-size: 1.65rem;
    box-shadow: 0 14px 32px rgba(24,183,214,0.24);
}

.pk-video-ripple {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: rgba(255,255,255,0.34);
    animation: pkRipple 1.8s infinite ease-out;
    z-index: 1;
}

.pk-video-ripple-delay {
    animation-delay: 0.7s;
}

@keyframes pkRipple {
    0% {
        transform: scale(0.85);
        opacity: 0.85;
    }

    100% {
        transform: scale(1.85);
        opacity: 0;
    }
}

.pk-video-meta {
    padding: 1rem 0.4rem 0 0.4rem;
}

.pk-video-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pk-text);
    margin-top: 0.7rem;
    margin-bottom: 0.25rem;
}

.pk-video-text {
    color: var(--pk-muted);
    font-weight: 500;
}

.pk-video-modal {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.98);
}

.pk-video-frame {
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.18);
}

@media (max-width: 767.98px) {
    .pk-video-thumb {
        height: 200px;
    }

    .pk-video-play {
        width: 72px;
        height: 72px;
        font-size: 1.35rem;
    }

    .pk-video-ripple {
        width: 84px;
        height: 84px;
    }
}
.pk-video-thumb-placeholder {
    background: radial-gradient(circle at top left, rgba(24,183,214,0.35), transparent 28%), radial-gradient(circle at bottom right, rgba(220,217,255,0.55), transparent 30%), linear-gradient(135deg, #eef8fb, #f3f0ff);
}

.pk-public-brandbar {
    max-width: 880px;
    margin: 0 auto 14px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pk-public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 10px 24px rgba(41, 61, 102, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pk-public-brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, var(--pk-primary), #69d8ee);*/
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(24,183,214,0.25);
}

.pk-public-brand-name {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--pk-text);
    line-height: 1.1;
}

.pk-public-brand-subtitle {
    font-size: 0.82rem;
    color: var(--pk-muted);
    font-weight: 600;
    line-height: 1.2;
}