/* ===== PULSEVIBE NORMAL PAGE THEME ===== */

:root {
    --pv-dark: #17133f;
    --pv-deep: #25155f;
    --pv-purple: #6d35b9;
    --pv-violet: #8f3fd1;
    --pv-pink: #ef2d6f;
    --pv-red: #f31548;
    --pv-orange: #ff8a22;
    --pv-yellow: #f5c51b;
    --pv-white: #ffffff;
    --pv-muted: rgba(255, 255, 255, 0.72);
    --pv-soft: rgba(255, 255, 255, 0.11);
    --pv-border: rgba(255, 255, 255, 0.16);
    --pv-shadow: 0 28px 90px rgba(14, 7, 54, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--pv-white);
    font-family: Arial, Helvetica, sans-serif;
    background: #170f45;
}

a {
    color: inherit;
}

.pv-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(20, 18, 73, 0.96) 0%, rgba(74, 35, 154, 0.9) 47%, rgba(184, 26, 120, 0.86) 100%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
        radial-gradient(circle at 22% 78%, rgba(239, 45, 111, 0.22), transparent 34%);
}

.pv-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 46px 46px;
}

.pv-page::after {
    content: "";
    position: absolute;
    inset: auto -12% -18% -12%;
    height: 280px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    filter: blur(1px);
}

.pv-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ===== NAVIGATION ===== */

.pv-nav {
    position: relative;
    z-index: 20;
    padding: 24px 22px 0;
}

.pv-nav-wrap {
    width: 100%;
    max-width: 1240px;
    min-height: 74px;
    margin: 0 auto;
    padding: 12px 16px 12px 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 70px rgba(10, 5, 46, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pv-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pv-brand-logo {
    display: block;
    width: auto;
    max-width: 240px;
    max-height: 54px;
    object-fit: contain;
}

.pv-brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.46), transparent 28%),
        linear-gradient(135deg, var(--pv-red), var(--pv-orange));
    box-shadow: 0 18px 40px rgba(243, 21, 72, 0.34);
}

.pv-brand-mark i {
    font-size: 24px;
}

.pv-brand-name {
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.8px;
    white-space: nowrap;
}

.pv-nav-links {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding: 7px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.pv-nav-links a {
    min-height: 44px;
    padding: 0 15px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: 0.22s ease;
}

.pv-nav-links a i {
    color: var(--pv-yellow);
    font-size: 17px;
}

.pv-nav-links a:hover,
.pv-nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.pv-nav-links a.pv-register-nav {
    color: #ba174c;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(255, 255, 255, 0.14);
}

.pv-nav-links a.pv-register-nav i {
    color: #ef2d6f;
}

.pv-nav-links a.pv-register-nav:hover {
    color: #ba174c;
    background: #ffffff;
}

/* ===== MAIN ===== */

.pv-main {
    position: relative;
    z-index: 3;
    padding: 70px 0 72px;
}

.pv-orb {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
}

.pv-orb-one {
    width: 420px;
    height: 420px;
    right: 7%;
    top: 125px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 0 80px rgba(255, 255, 255, 0.05),
        0 0 0 70px rgba(255, 255, 255, 0.025);
}

.pv-orb-two {
    width: 280px;
    height: 280px;
    left: -90px;
    bottom: 45px;
    background: rgba(239, 45, 111, 0.16);
    filter: blur(10px);
}

/* ===== HERO ===== */

.pv-page-hero {
    position: relative;
    z-index: 2;
    margin-bottom: 34px;
}

.pv-hero-card {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 5vw, 54px);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 80px rgba(10, 5, 46, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pv-hero-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -160px;
    border-radius: 999px;
    background: rgba(239, 45, 111, 0.22);
    pointer-events: none;
}

.pv-hero-card::after {
    content: "";
    position: absolute;
    inset: auto 34px 0 34px;
    height: 7px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--pv-red), var(--pv-orange), var(--pv-yellow));
}

.pv-breadcrumb {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 900;
}

.pv-breadcrumb a {
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.pv-breadcrumb a i {
    color: var(--pv-yellow);
}

.pv-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.45);
}

.pv-hero-card h1 {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -3.6px;
}

.pv-meta {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pv-meta span {
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 850;
}

.pv-meta i {
    color: var(--pv-yellow);
}

/* ===== CONTENT ===== */

.pv-content-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.pv-content-card {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 34px;
    color: #2a243b;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: var(--pv-shadow);
}

.pv-content-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--pv-red), var(--pv-orange), var(--pv-yellow));
}

.pv-content {
    position: relative;
    z-index: 2;
    color: #342d48;
    font-size: 16px;
    line-height: 1.8;
}

.pv-content :first-child {
    margin-top: 0;
}

.pv-content :last-child {
    margin-bottom: 0;
}

.pv-content h1,
.pv-content h2,
.pv-content h3,
.pv-content h4,
.pv-content h5,
.pv-content h6 {
    color: #201c33;
    line-height: 1.16;
    letter-spacing: -0.7px;
}

.pv-content h1 {
    font-size: 36px;
}

.pv-content h2 {
    font-size: 30px;
}

.pv-content h3 {
    font-size: 24px;
}

.pv-content p {
    color: #4d435f;
}

.pv-content a {
    color: #ef2d6f;
    font-weight: 900;
    text-decoration: none;
}

.pv-content a:hover {
    color: #6d35b9;
}

.pv-content blockquote {
    margin: 26px 0;
    padding: 20px 22px;
    border-left: 5px solid #ef2d6f;
    border-radius: 18px;
    color: #4d435f;
    background: #f7f1fb;
}

.pv-content ul,
.pv-content ol {
    padding-left: 22px;
}

.pv-content li {
    margin: 8px 0;
}

.pv-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.pv-content pre {
    overflow-x: auto;
    padding: 18px;
    border-radius: 18px;
    color: #ffffff;
    background: #201c33;
}

.pv-content code {
    padding: 2px 7px;
    border-radius: 8px;
    color: #ef2d6f;
    background: #f7f1fb;
}

.pv-content pre code {
    padding: 0;
    color: inherit;
    background: transparent;
}

.pv-content iframe {
    max-width: 100%;
    border-radius: 20px;
}

/* ===== SIDEBAR ===== */

.pv-sidebar {
    display: grid;
    gap: 18px;
}

.pv-side-card {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 28px;
    color: #201c33;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: 0 22px 68px rgba(14, 7, 54, 0.28);
}

.pv-side-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--pv-red), var(--pv-orange), var(--pv-yellow));
}

.pv-side-label {
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6d35b9;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pv-side-label i {
    color: #ef2d6f;
    font-size: 16px;
}

.pv-rectangle-ad {
    min-height: 250px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f1fb;
    border: 1px solid #eadff5;
}

.pv-rectangle-ad iframe,
.pv-rectangle-ad img {
    max-width: 100%;
}

.pv-action-card {
    padding: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.18), transparent 36%),
        linear-gradient(145deg, rgba(109, 53, 185, 0.96), rgba(239, 45, 111, 0.92));
}

.pv-action-card::before {
    background: rgba(255, 255, 255, 0.35);
}

.pv-action-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ba174c;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(10, 5, 46, 0.18);
}

.pv-action-icon i {
    font-size: 25px;
}

.pv-action-card > span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pv-action-card h2 {
    margin: 10px 0 10px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -1px;
}

.pv-action-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 750;
}

.pv-action-card a {
    min-height: 46px;
    margin-top: 18px;
    padding: 0 17px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ba174c;
    background: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 16px 36px rgba(10, 5, 46, 0.18);
}

.pv-action-card a span {
    display: inline-flex;
    color: #ba174c;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: none;
}

.pv-action-card a i {
    color: #ef2d6f;
}

/* ===== FOOTER ===== */

.pv-footer {
    position: relative;
    z-index: 3;
    padding: 16px 0 38px;
}

.pv-footer-panel {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 0.8fr);
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 22px 70px rgba(10, 5, 46, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pv-footer-panel::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    top: -150px;
    border-radius: 999px;
    background: rgba(239, 45, 111, 0.2);
    pointer-events: none;
}

.pv-footer-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.pv-footer-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 52px;
    object-fit: contain;
}

.pv-footer-brand-fallback {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pv-footer-brand-fallback .pv-brand-name {
    color: #ffffff;
}

.pv-footer-copy {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 800;
}

.pv-footer-links {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pv-footer-links a {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: 0.22s ease;
}

.pv-footer-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.pv-powered {
    position: relative;
    z-index: 2;
    justify-self: end;
    text-align: right;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 800;
}

.pv-powered strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 950;
}

.pv-powered a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 950;
}

.pv-powered a:hover {
    color: var(--pv-yellow);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1080px) {
    .pv-nav-wrap {
        grid-template-columns: 1fr;
    }

    .pv-brand,
    .pv-nav-links {
        justify-self: center;
    }

    .pv-nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pv-content-layout {
        grid-template-columns: 1fr;
    }

    .pv-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pv-action-card {
        grid-column: 1 / -1;
    }

    .pv-footer-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pv-footer-brand {
        justify-content: center;
    }

    .pv-powered {
        justify-self: center;
        text-align: center;
    }
}

@media (max-width: 720px) {
    .pv-nav {
        padding: 14px 12px 0;
    }

    .pv-nav-wrap {
        border-radius: 22px;
    }

    .pv-brand {
        flex-direction: column;
        text-align: center;
    }

    .pv-brand-name {
        white-space: normal;
        font-size: 20px;
    }

    .pv-nav-links {
        width: 100%;
    }

    .pv-nav-links a {
        flex: 1 1 auto;
        min-width: 128px;
    }

    .pv-main {
        padding: 48px 0 54px;
    }

    .pv-hero-card,
    .pv-content-card {
        border-radius: 28px;
    }

    .pv-hero-card h1 {
        letter-spacing: -2.2px;
    }

    .pv-meta span {
        width: 100%;
        justify-content: center;
    }

    .pv-sidebar {
        grid-template-columns: 1fr;
    }

    .pv-footer-panel {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .pv-footer-logo {
        max-width: 190px;
    }

    .pv-footer-links {
        flex-direction: column;
    }

    .pv-footer-links a {
        width: 100%;
        justify-content: center;
    }
}