/* ==========================================================================
   Antigravity Boost - Master Stylesheet
   File: public/css/style.css
   Purpose: Unified stylesheet used across all application modules and pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Unified Global Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-slate-50: #f8fafc;
    --bg-zinc-950: #09090b;

    --white: #ffffff;
    --zinc-900: #121214;
    --zinc-800: #1a1a1e;

    --slate-200: #e2e8f0;
    --zinc-700: #27272a;

    --slate-400: #94a3b8;
    --zinc-500: #71717a;

    --slate-700: #334155;
    --zinc-300: #d4d4d8;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-500: #64748b;

    /* Social Media Brand Colors */
    --color-instagram: #e1306c;
    --color-instagram-rgb: 225, 48, 108;
    --grad-instagram: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    --glow-instagram: rgba(225, 48, 108, 0.4);

    --color-facebook: #1877f2;
    --color-facebook-rgb: 24, 119, 242;
    --grad-facebook: linear-gradient(to right, #1877f2, #0056b3);
    --glow-facebook: rgba(24, 119, 242, 0.4);

    --color-linkedin: #0077b5;
    --color-linkedin-rgb: 0, 119, 181;
    --grad-linkedin: linear-gradient(to right, #0077b5, #005582);
    --glow-linkedin: rgba(0, 119, 181, 0.4);

    /* Default Scoped platform defaults */
    --platform-color: var(--color-instagram);
    --platform-color-rgb: var(--color-instagram-rgb);
    --platform-gradient: var(--grad-instagram);
    --platform-glow: var(--glow-instagram);

    /* Global Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Dark Scheme */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-body: var(--bg-zinc-950);
        --bg-card: rgba(18, 18, 20, 0.6);
        --border-card: rgba(39, 39, 42, 0.8);
        --bg-form: var(--zinc-900);
        --text-primary: var(--zinc-300);
        --text-secondary: var(--zinc-500);
        --text-title: var(--white);
        --input-bg: rgba(26, 26, 30, 0.6);
        --input-border: var(--zinc-800);
        --input-text: var(--white);
        --input-focus-bg: var(--zinc-900);
        --terms-link: var(--zinc-300);
    }
}

/* Global Light Scheme */
@media (prefers-color-scheme: light) {
    :root {
        --bg-body: var(--bg-slate-50);
        --bg-card: rgba(255, 255, 255, 0.7);
        --border-card: rgba(226, 232, 240, 0.8);
        --bg-form: var(--white);
        --text-primary: var(--slate-700);
        --text-secondary: var(--slate-400);
        --text-title: var(--slate-900);
        --input-bg: rgba(248, 250, 252, 0.8);
        --input-border: var(--slate-200);
        --input-text: var(--slate-900);
        --input-focus-bg: var(--white);
        --terms-link: var(--slate-800);
    }
}

/* Manual Theme Class Triggers */
.dark-mode {
    --bg-body: var(--bg-zinc-950);
    --bg-card: rgba(18, 18, 20, 0.6);
    --border-card: rgba(39, 39, 42, 0.8);
    --bg-form: var(--zinc-900);
    --text-primary: var(--zinc-300);
    --text-secondary: var(--zinc-500);
    --text-title: var(--white);
    --input-bg: rgba(26, 26, 30, 0.6);
    --input-border: var(--zinc-800);
    --input-text: var(--white);
    --input-focus-bg: var(--zinc-900);
    --terms-link: var(--zinc-300);
}

.light-mode {
    --bg-body: var(--bg-slate-50);
    --bg-card: rgba(255, 255, 255, 0.7);
    --border-card: rgba(226, 232, 240, 0.8);
    --bg-form: var(--white);
    --text-primary: var(--slate-700);
    --text-secondary: var(--slate-400);
    --text-title: var(--slate-900);
    --input-bg: rgba(248, 250, 252, 0.8);
    --input-border: var(--slate-200);
    --input-text: var(--slate-900);
    --input-focus-bg: var(--white);
    --terms-link: var(--slate-800);
}

/* --------------------------------------------------------------------------
   2. Resets & Boilerplate
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    transition: background-color var(--transition-normal);
}

/* /* --------------------------------------------------------------------------
   3. Module: Auth & Registration Layout Styles
   -------------------------------------------------------------------------- */

body.register-body,
body.login-body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background-color: var(--bg-slate-50) !important;
    color: var(--slate-800) !important;
    position: relative;
}

/* Force light theme colors on registration elements regardless of browser system preference */
body.register-body,
body.login-body {
    --bg-body: var(--bg-slate-50);
    --bg-card: rgba(255, 255, 255, 0.8);
    --border-card: rgba(255, 255, 255, 0.7);
    --bg-form: rgba(255, 255, 255, 0.95);
    --text-primary: var(--slate-700);
    --text-secondary: var(--slate-400);
    --text-title: var(--slate-900);
    --input-bg: #f8fafc;
    --input-border: rgba(0, 0, 0, 0.08);
    --input-text: #1e293b;
    --input-focus-bg: #ffffff;
    --terms-link: var(--slate-800);
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, .05), transparent 70%);
}

/* ===== FLOATING ORBS ===== */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    pointer-events: none;
    z-index: 0;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: #c084fc;
    top: -15%;
    left: -10%;
    animation: drift 25s ease-in-out infinite;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: #f472b6;
    top: 50%;
    right: -15%;
    animation: drift 20s ease-in-out infinite reverse;
}

.orb3 {
    width: 400px;
    height: 400px;
    background: #60a5fa;
    bottom: -10%;
    left: 35%;
    animation: drift 22s ease-in-out infinite 5s;
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(50px, -60px) scale(1.08)
    }

    66% {
        transform: translate(-40px, 50px) scale(.92)
    }
}

/* ===== CENTERED CARD WRAPPER ===== */
.register-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    box-sizing: border-box;
}

/* ===== REGISTER CONTAINER CARD ===== */
.register-card-container {
    width: 100%;
    max-width: 1040px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid var(--border-card);
    border-radius: 28px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.06), 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== LEFT VISUAL GRADIENT PANEL ===== */
.showcase-panel {
    width: 42%;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #ffffff;
    padding: 3.5rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-dark-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15), transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.showcase-grid-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 2;
    color: #fff;
}

.brand-logo-section {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-icon-svg {
    stroke: #ffffff;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #ffffff !important;
}

.brand-subtext {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -2px;
}

.showcase-content-section {
    position: relative;
    z-index: 10;
    margin: 2.5rem 0;
}

.showcase-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.showcase-title span {
    background: linear-gradient(to right, #ffd6e8, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 2rem;
}

.showcase-footer {
    position: relative;
    z-index: 10;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

.ssl-secure {
    display: flex;
    align-items: center;
    color: #34d399 !important;
    font-weight: 600;
}

.ssl-secure svg {
    margin-right: 0.375rem;
}

/* ===== RIGHT FORM PANEL (LIGHT MODERN) ===== */
.form-panel {
    width: 58%;
    background-color: var(--bg-form) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--text-title) !important;
}

.back-link svg {
    margin-right: 0.375rem;
    transition: transform 0.2s ease;
}

.back-link:hover svg {
    transform: translateX(-2px);
}

.login-redirect-info {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-secondary) !important;
}

.login-redirect-link {
    font-weight: 700;
    text-decoration: none;
    color: var(--platform-color) !important;
    transition: opacity 0.2s ease;
}

.login-redirect-link:hover {
    opacity: 0.8;
}

.form-body-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-headline {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-title) !important;
    line-height: 1.2;
}

.form-subheadline {
    font-size: 0.9rem;
    color: var(--text-secondary) !important;
    line-height: 1.4;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary) !important;
    display: block;
    margin-bottom: 0.625rem;
}

/* ===== PLATFORM SELECTOR ===== */
.platform-selector-grid {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    width: 100%;
}

.platform-select-btn {
    flex: 1;
    min-width: 0;
    border: 1.5px solid var(--input-border) !important;
    background-color: var(--input-bg) !important;
    border-radius: 14px !important;
    padding: 0.875rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease !important;
    outline: none;
    box-shadow: none !important;
}

.platform-select-btn:hover {
    background-color: var(--input-focus-bg) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

.platform-icon-circle {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.icon-instagram {
    background: var(--grad-instagram) !important;
}

.icon-facebook {
    background: var(--grad-facebook) !important;
}

.icon-linkedin {
    background: var(--grad-linkedin) !important;
}

.btn-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary) !important;
}

.platform-select-btn.active {
    background-color: rgba(var(--platform-color-rgb), 0.04) !important;
    border-color: var(--platform-color) !important;
    box-shadow: 0 0 0 3px rgba(var(--platform-color-rgb), 0.12) !important;
}

.platform-select-btn.active .btn-label {
    color: var(--platform-color) !important;
    font-weight: 700 !important;
}

/* ===== FORM INPUTS ===== */
.form-inner-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.input-icon-group {
    position: relative !important;
}

.input-icon-group .icon-left {
    position: absolute !important;
    top: 50% !important;
    left: 0.875rem !important;
    transform: translateY(-50%) !important;
    color: var(--text-secondary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
    height: 1.25rem !important;
    width: 1.25rem !important;
    z-index: 5 !important;
    transition: color 0.2s ease;
}

.input-icon-group:focus-within .icon-left {
    color: var(--platform-color) !important;
}

.form-input-control {
    display: block;
    width: 100%;
    margin: 0 !important;
    height: 3.2rem !important;
    padding: 0.925rem 1rem 0.925rem 2.75rem !important;
    line-height: 1.5 !important;
    border-radius: 12px !important;
    border: 1.5px solid var(--input-border) !important;
    background-color: var(--input-bg) !important;
    color: var(--input-text) !important;
    font-family: 'Inter', sans-serif !important;
    vertical-align: middle !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    outline: none;
    box-sizing: border-box !important;
}

.form-input-control::placeholder {
    color: var(--text-secondary) !important;
    opacity: 0.8;
}

.form-input-control:focus {
    border-color: var(--platform-color) !important;
    box-shadow: 0 0 0 3px rgba(var(--platform-color-rgb), 0.12) !important;
    background-color: var(--input-focus-bg) !important;
}

.password-toggle-btn {
    position: absolute !important;
    top: 50% !important;
    right: 0.875rem !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    color: var(--text-secondary) !important;
    outline: none !important;
    padding: 0 !important;
    height: 1.5rem !important;
    width: 1.5rem !important;
    z-index: 10 !important;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover,
.password-toggle-btn:focus {
    color: var(--text-title) !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* ===== PASSWORD STRENGTH METER ===== */
.strength-indicator-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.strength-meter-row {
    height: 4px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-radius: 9999px;
    margin-top: 0.5rem;
    overflow: hidden;
    display: flex;
    gap: 2px;
}

.strength-meter-bar {
    height: 100%;
    width: 33.33%;
    background-color: rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease;
}

.strength-weak {
    background-color: #ef4444 !important;
}

.strength-medium {
    background-color: #f59e0b !important;
}

.strength-strong {
    background-color: #10b981 !important;
}

.label-pass-strength {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary) !important;
}

.label-pass-strength.weak {
    color: #ef4444 !important;
}

.label-pass-strength.medium {
    color: #f59e0b !important;
}

.label-pass-strength.strong {
    color: #10b981 !important;
}

/* ===== CUSTOM CHECKBOX ===== */
.terms-agreement-row {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.25rem 0;
}

.custom-checkbox {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 1.2rem !important;
    height: 1.2rem !important;
    border-radius: 6px !important;
    border: 1.5px solid var(--input-border) !important;
    background-color: var(--input-bg) !important;
    cursor: pointer !important;
    position: relative !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    margin-top: 0.1rem !important;
}

.custom-checkbox:hover {
    border-color: rgba(0, 0, 0, 0.25) !important;
    background-color: var(--input-focus-bg) !important;
}

.custom-checkbox:checked {
    background-color: var(--platform-color) !important;
    border-color: var(--platform-color) !important;
}

.custom-checkbox:checked::after {
    content: '' !important;
    position: absolute !important;
    left: 0.35rem !important;
    top: 0.15rem !important;
    width: 0.25rem !important;
    height: 0.5rem !important;
    border: solid #fff !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
}

.terms-label {
    font-size: 0.8rem;
    color: var(--text-secondary) !important;
    line-height: 1.4;
}

.terms-label a {
    font-weight: 700;
    color: var(--platform-color) !important;
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: color 0.2s ease;
}

/* ===== SUBMIT BUTTON ===== */
.submit-growth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    background: linear-gradient(135deg, #7c3aed, #db2777) !important;
    box-shadow: 0 10px 20px -5px rgba(219, 39, 119, 0.3) !important;
}

.submit-growth-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px -5px rgba(219, 39, 119, 0.4) !important;
}

.submit-growth-btn:active {
    transform: translateY(0) !important;
}

/* ===== DIVIDER ===== */
.form-divider-row {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--input-border) !important;
    opacity: 0.5;
}

.divider-text {
    flex-shrink: 0;
    margin: 0 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary) !important;
}

/* ===== OAUTH BUTTONS ===== */
.oauth-options-row {
    display: flex;
    flex-direction: row;
    gap: 0.875rem;
    width: 100%;
}

.oauth-provider-btn {
    flex: 1;
    min-width: 0;
    border: 1.5px solid var(--input-border) !important;
    background-color: var(--input-bg) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.oauth-provider-btn:hover {
    background-color: var(--input-focus-bg) !important;
    border-color: var(--text-secondary) !important;
}

/* ===== FOOTER SECTION ===== */
.form-footer-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--input-border) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary) !important;
}

.form-footer-links {
    display: flex;
    gap: 1rem;
}

.form-footer-links a {
    color: var(--text-secondary) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-footer-links a:hover {
    color: var(--text-primary) !important;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 900px) {
    .register-wrapper {
        padding: 1.5rem 1rem;
    }

    .register-card-container {
        flex-direction: column;
        max-width: 480px;
    }

    .showcase-panel {
        display: none !important;
    }

    .form-panel {
        width: 100%;
        padding: 2.5rem 2rem;
    }
}

/* ===== AUTOFILL FIXED ===== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-internal-autofill-previewed,
input:-internal-autofill-selected,
input:autofill {
    -webkit-box-shadow: 0 0 0 1000px #f8fafc inset !important;
    -webkit-text-fill-color: #1e293b !important;
    caret-color: #1e293b !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Hide native password reveal icons in Edge/IE */
input::-ms-reveal,
input::-ms-clear {
    display: none !important;
}

/* Hide native password reveal icons in WebKit/Blink */
input::-webkit-credentials-auto-fill-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* --------------------------------------------------------------------------
   5. Module: Welcome Landing Page Styles
   -------------------------------------------------------------------------- */

/* Full viewport canvas for welcome page */
body.welcome-body {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-slate-50), var(--bg-zinc-950));
}

/* Main split container */
.welcome-card-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-card);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    z-index: 10;
}

/* Left hero section */
.welcome-hero-panel {
    flex: 1;
    background: var(--bg-zinc-950);
    color: var(--white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.welcome-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.welcome-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.welcome-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.welcome-cta-primary {
    background: var(--platform-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.welcome-cta-primary:hover {
    background: var(--platform-color);
    opacity: 0.85;
}

.welcome-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.welcome-cta-secondary:hover {
    background: var(--white);
    color: var(--bg-zinc-950);
}

/* Right showcase panel */
.welcome-showcase-panel {
    flex: 1;
    background: var(--bg-slate-50);
    padding: 4rem 3rem;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.welcome-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.welcome-feature-card {
    background: var(--white);
    border: 1px solid var(--border-card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.welcome-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.welcome-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-title);
}

.welcome-feature-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Header navigation */
.welcome-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.welcome-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.welcome-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.welcome-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.welcome-nav a:hover {
    opacity: 0.85;
}

/* Footer stats */
.welcome-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.welcome-stat-item {
    text-align: center;
}

.welcome-stat-value {
    font-weight: 700;
    color: var(--text-title);
    display: block;
    font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-card-container {
        flex-direction: column;
    }

    .welcome-hero-panel,
    .welcome-showcase-panel {
        width: 100%;
        flex: none;
        padding: 2rem 1.5rem;
    }

    .welcome-header {
        padding: 0.75rem 1rem;
    }
}

/* --------------------------------------------------------------------------
   6. Welcome Page Specific Styles (aliasing registration layout)
   -------------------------------------------------------------------------- */

/* Body wrapper */
.welcome-body {
    /* Reuse register-body styles */
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-body);
}

/* Decorative blobs */
.welcome-blob-top,
.welcome-blob-bottom {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.welcome-blob-top {
    top: -20%;
    left: -10%;
    background: rgba(37, 99, 235, 0.08);
}

.welcome-blob-bottom {
    bottom: -20%;
    right: -10%;
    background: rgba(219, 39, 119, 0.08);
}

/* Header navigation */
.welcome-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: 20;
}

/* Main container */
.welcome-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding-top: 4rem;
    /* offset for fixed header */
}

/* Hero section split layout */
.hero-section .hero-grid-container {
    display: flex;
    flex-direction: row;
    flex: 1;
    overflow: hidden;
}

.hero-content-panel {
    flex: 1;
    background: var(--bg-zinc-950);
    color: var(--white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hero-showcase-panel {
    flex: 1;
    background: var(--bg-slate-50);
    padding: 4rem 3rem;
    overflow-y: auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-section .hero-grid-container {
        flex-direction: column;
    }

    .hero-content-panel,
    .hero-showcase-panel {
        padding: 2rem 1.5rem;
    }

    .welcome-navbar {
        padding: 0.75rem 1rem;
    }
}

/* ===== STEPPER WIDGET ===== */
.registration-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

.stepper-progress-line {
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    height: 3px;
    background-color: var(--input-border);
    width: 100%;
    z-index: 1;
}

.stepper-progress-line-fill {
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    height: 3px;
    background: var(--platform-gradient);
    width: 0%;
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-step {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stepper-step-circle {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: var(--input-bg);
    border: 2px solid var(--input-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.stepper-step.active .stepper-step-circle {
    background-color: var(--input-focus-bg);
    border-color: var(--platform-color);
    color: var(--platform-color);
    box-shadow: 0 0 0 4px rgba(var(--platform-color-rgb), 0.15);
}

.stepper-step.completed .stepper-step-circle {
    background: var(--platform-gradient);
    border-color: transparent;
    color: #ffffff;
}

.stepper-step-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.stepper-step.active .stepper-step-label {
    color: var(--text-title);
}

/* ===== STEP PANELS PANES ===== */
.step-pane {
    display: none;
    animation: fadeSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.step-pane.active {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NAVIGATION BUTTONS ===== */
.stepper-nav-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.prev-step-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1.5px solid var(--input-border);
    background-color: var(--input-bg);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-step-btn:hover {
    background-color: var(--input-focus-bg);
    border-color: var(--text-secondary);
}

.next-step-btn {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--platform-gradient) !important;
    box-shadow: 0 10px 20px -5px rgba(var(--platform-color-rgb), 0.3) !important;
}

.next-step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(var(--platform-color-rgb), 0.4) !important;
}

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

/* ===== FILE UPLOAD COMPONENT ===== */
.upload-drag-zone {
    border: 2px dashed var(--input-border);
    background-color: var(--input-bg);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.upload-drag-zone:hover {
    border-color: var(--platform-color);
    background-color: var(--input-focus-bg);
}

.upload-drag-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: rgba(var(--platform-color-rgb), 0.08);
    color: var(--platform-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.upload-drag-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-title);
}

.upload-drag-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.upload-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
    width: 100%;
}

.upload-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--input-border);
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview-item-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MOBILE OTP VERIFICATION SYSTEM ===== */
.mobile-input-wrapper {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.send-otp-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    background: var(--platform-gradient);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--platform-color-rgb), 0.2);
}

.send-otp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(var(--platform-color-rgb), 0.3);
}

.send-otp-btn:disabled {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-secondary);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.otp-verify-pane {
    background-color: var(--input-focus-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeSlideIn 0.3s ease forwards;
}

.otp-inputs-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.otp-digit-field {
    width: 2.5rem;
    height: 3rem;
    border-radius: 8px;
    border: 1.5px solid var(--input-border);
    background-color: var(--bg-card);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-title);
    transition: all 0.2s ease;
}

.otp-digit-field:focus {
    border-color: var(--platform-color);
    background-color: var(--input-focus-bg);
    box-shadow: 0 0 0 3px rgba(var(--platform-color-rgb), 0.1);
    outline: none;
}

.otp-actions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.otp-timer {
    color: var(--text-secondary);
    font-weight: 500;
}

.otp-resend-link {
    color: var(--platform-color);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.otp-resend-link.disabled {
    color: var(--text-secondary);
    pointer-events: none;
    opacity: 0.5;
}

.verify-otp-btn {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: none;
    background: var(--platform-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.verify-otp-btn:hover {
    transform: translateY(-1px);
}

.otp-success-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px dashed rgba(16, 185, 129, 0.3);
}

/* Global browser autofill dark mode fixes (Scoped to body.register-body, body.login-body or body.dark-mode) */
body.register-body input:-webkit-autofill,
body.register-body input:-webkit-autofill:hover,
body.register-body input:-webkit-autofill:focus,
body.register-body input:-webkit-autofill:active,
body.register-body input:-internal-autofill-previewed,
body.register-body input:-internal-autofill-selected,
body.register-body input:autofill,
body.login-body input:-webkit-autofill,
body.login-body input:-webkit-autofill:hover,
body.login-body input:-webkit-autofill:focus,
body.login-body input:-webkit-autofill:active,
body.login-body input:-internal-autofill-previewed,
body.login-body input:-internal-autofill-selected,
body.login-body input:autofill {
    -webkit-box-shadow: 0 0 0 1000px #f8fafc inset !important;
    -webkit-text-fill-color: #1e293b !important;
    caret-color: #1e293b !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

body:not(.register-body):not(.login-body) input:-webkit-autofill,
body:not(.register-body):not(.login-body) input:-webkit-autofill:hover,
body:not(.register-body):not(.login-body) input:-webkit-autofill:focus,
body:not(.register-body):not(.login-body) input:-webkit-autofill:active,
body:not(.register-body):not(.login-body) input:-internal-autofill-previewed,
body:not(.register-body):not(.login-body) input:-internal-autofill-selected,
body:not(.register-body):not(.login-body) input:autofill {
    -webkit-box-shadow: 0 0 0 1000px #1a1a24 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Auth Showcase Feature List styling */
.showcase-feature-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-feature-check {
    width: 1rem;
    height: 1rem;
    color: #ffffff;
}

.showcase-feature-text {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Custom Tooltip CSS
   -------------------------------------------------------------------------- */
.custom-tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    margin-left: 8px;
}

.custom-tooltip-container .custom-tooltip-text {
    visibility: hidden;
    width: 260px;
    background-color: #0f172a;
    color: #f8fafc;
    text-align: left;
    border-radius: 10px;
    padding: 12px 16px;
    position: absolute;
    z-index: 9999;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.custom-tooltip-container .custom-tooltip-text::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #0f172a transparent;
}

.custom-tooltip-container:hover .custom-tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(2px);
}


/* =========================================
   User Dashboard & Shared Views CSS
   ========================================= */
.dashboard-body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 24px;
    margin: 0;
    width: 100%;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Continuous laser-sliding animated border spanning the entire width of the page */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #7c3aed, #db2777, #7c3aed);
    background-size: 200% auto;
    animation: slide-laser 3s linear infinite;
}

@keyframes slide-laser {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.navbar-inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover {
    transform: scale(1.03) translateY(-1px);
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.brand-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    pointer-events: none;
}

.brand:hover .brand-icon {
    box-shadow: 0 0 25px rgba(219, 39, 119, 0.3);
    transform: rotate(5deg);
}

.brand-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(226, 232, 240, 0.8);
    padding: 6px 14px 6px 6px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-profile-badge:hover {
    border-color: rgba(124, 58, 237, 0.2);
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(124, 58, 237, 0.06);
}

.user-profile-badge span {
    color: #0f172a !important;
}

.nav-edit-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.15);
    border: none;
}

.nav-edit-btn:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #db2777 100%);
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.logout-btn-pill {
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444 !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid rgba(239, 68, 68, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.logout-btn-pill:hover {
    background: #ef4444;
    color: #ffffff !important;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: translateY(-2px);
}

/* Pulsating animation for online verified indicator */
@keyframes pulse-status {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.status-dot-pulse {
    animation: pulse-status 2s infinite;
}

.main-container {
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding: 0;
    flex-grow: 1;
}

/* Sophisticated Glassmorphic Welcome Card (Simple, Stylist, Classic & Unique) */
.welcome-hero {
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1.5px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 24px !important;
    padding: 32px 40px !important;
    color: #0f172a !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02) !important;
    margin-bottom: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
    backdrop-filter: blur(20px) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.welcome-hero:hover {
    border-color: rgba(124, 58, 237, 0.25) !important;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.04) !important;
    transform: translateY(-2px) !important;
}

.welcome-hero-left {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    flex-grow: 1 !important;
}

/* Clean Classic Profile Avatar */
.welcome-avatar-wrapper {
    flex-shrink: 0 !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    overflow: visible !important;
    /* Allow the status dot to float outside! */
    border: 3px solid #ffffff !important;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%) !important;
    position: relative !important;
}

.welcome-avatar-text {
    color: #ffffff !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Floating Green Status Dot */
.avatar-status-dot {
    position: absolute !important;
    bottom: 2px !important;
    right: 2px !important;
    width: 16px !important;
    height: 16px !important;
    background: #10b981 !important;
    border: 3px solid #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4) !important;
}

.welcome-text-group {
    text-align: left !important;
}

.welcome-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 6px !important;
    text-shadow: none !important;
}

.welcome-username {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 900 !important;
}

.welcome-desc {
    font-size: 14.5px !important;
    color: #475569 !important;
    max-width: 620px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

/* Right Side Stats Panel */
.welcome-hero-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
    min-width: 220px !important;
}

.hero-metric-pill {
    background: rgba(248, 250, 252, 0.7) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    padding: 10px 18px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    transition: all 0.2s ease !important;
}

.hero-metric-pill:hover {
    background: #ffffff !important;
    border-color: rgba(124, 58, 237, 0.15) !important;
    transform: translateX(-4px) !important;
}

.metric-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.metric-value {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.stat-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.badge-active {
    background: rgba(16, 185, 129, 0.06);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
}

.badge-none {
    background: rgba(100, 116, 139, 0.06);
    color: #64748b;
    border: 1px solid rgba(100, 116, 139, 0.15);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
}

.badge-pending {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-rejected {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: 1.5px solid rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.divider {
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.post-preview-card {
    background: #fafafb;
    border-radius: 16px;
    padding: 16px;
    font-size: 13px;
    color: #475569;
}

.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 24px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    margin-top: auto;
}

.ig-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 16px 50px 16px;
    margin-top: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ig-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 850px;
}

.ig-footer-links a {
    color: #737373;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.1px;
}

.ig-footer-links a:hover {
    text-decoration: underline;
}

.ig-footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #737373;
    font-size: 12px;
    font-weight: 400;
}


/* Extracted from resources/views/admin/templates/create.blade.php */
/* Custom Summernote Styling to blend with light-theme and Tailwind */
.note-editor.note-frame {
    border: 1px solid #e2e8f0 !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05) !important;
    background-color: #ffffff !important;
}

.note-toolbar {
    background-color: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 0.5rem !important;
}

.note-btn {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.375rem !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    transition: all 0.2s !important;
}

.note-btn:hover {
    background-color: #f1f5f9 !important;
    border-color: #94a3b8 !important;
    color: #0f172a !important;
}

.note-editable {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    color: #334155 !important;
    padding: 1.25rem !important;
    min-height: 380px !important;
    background-color: #ffffff !important;
}


/* Extracted from resources/views/admin/templates/edit.blade.php */
/* Custom Summernote Styling to blend with light-theme and Tailwind */
.note-editor.note-frame {
    border: 1px solid #e2e8f0 !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05) !important;
    background-color: #ffffff !important;
}

.note-toolbar {
    background-color: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 0.5rem !important;
}

.note-btn {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.375rem !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    transition: all 0.2s !important;
}

.note-btn:hover {
    background-color: #f1f5f9 !important;
    border-color: #94a3b8 !important;
    color: #0f172a !important;
}

.note-editable {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    color: #334155 !important;
    padding: 1.25rem !important;
    min-height: 380px !important;
    background-color: #ffffff !important;
}


/* Extracted from resources/views/verification_pending.blade.php */
body.verification-body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f0f5ff, #e0e7ff);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #1e293b;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 2rem 3rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #3b82f6;
}

p {
    margin-bottom: 1.5rem;
}

input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color .2s;
}

input[type="text"]:focus {
    outline: none;
    border-color: #3b82f6;
}

button {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}


/* Extracted from resources/views/partials/boost_plans.blade.php */
.plans-section-title {
    font-size: 28px !important;
    font-weight: 900 !important;
    margin-top: 48px !important;
    margin-bottom: 50px !important;
    text-align: center !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -0.5px !important;
}

.plans-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin: 24px auto 48px auto !important;
    max-width: 100% !important;
    align-items: stretch !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* Single plan: center it with a sensible max-width */
.plans-grid.single-plan {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.plan-card {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 24px !important;
    padding: 32px 0 24px 0 !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    z-index: 1 !important;
}

.plan-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08) !important;
}

/* Featured card highlight border */
.plan-card.featured {
    border: 2px solid var(--theme-color) !important;
    transform: scale(1.02) !important;
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-8px) !important;
}

/* Breathtaking floating & glowing animations to highlight the Free plan card */
@keyframes planFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 30px rgba(var(--theme-color-rgb), 0.04), 0 0 0 1.5px rgba(var(--theme-color-rgb), 0.15);
        border-color: rgba(var(--theme-color-rgb), 0.3) !important;
    }

    50% {
        box-shadow: 0 25px 50px rgba(var(--theme-color-rgb), 0.18), 0 0 14px 4px rgba(var(--theme-color-rgb), 0.28);
        border-color: rgba(var(--theme-color-rgb), 0.8) !important;
    }

    100% {
        box-shadow: 0 10px 30px rgba(var(--theme-color-rgb), 0.04), 0 0 0 1.5px rgba(var(--theme-color-rgb), 0.15);
        border-color: rgba(var(--theme-color-rgb), 0.3) !important;
    }
}

.plan-card.is-free-highlight {
    animation: planFloat 4s ease-in-out infinite, pulseGlow 3s ease-in-out infinite !important;
}

.plan-card.is-free-highlight:hover {
    animation-play-state: paused !important;
    /* Stop floating on hover so user can easily click! */
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 25px 50px rgba(var(--theme-color-rgb), 0.22), 0 0 16px 4px rgba(var(--theme-color-rgb), 0.32) !important;
    border-color: var(--theme-color) !important;
}

/* Header styling with centered title */
.plan-card-header {
    position: static !important;
    padding: 12px 24px 8px 24px !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
}

.plan-name-txt {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: var(--theme-color) !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
    letter-spacing: 1px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-shadow: none !important;
}

.plan-name-icon {
    width: 22px !important;
    height: 22px !important;
    color: var(--theme-color) !important;
    flex-shrink: 0 !important;
}

.plan-type-pill {
    display: block !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #94a3b8 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 4px !important;
    box-shadow: none !important;
}

/* Floating star ribbon for Featured or Free plan */
.plan-badge-ribbon {
    position: absolute !important;
    top: -12px !important;
    /* Positioned perfectly over card top edge, avoiding title overlap */
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--theme-color) !important;
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 4px 12px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(var(--theme-color-rgb), 0.2) !important;
    border: 1.5px solid #ffffff !important;
    white-space: nowrap !important;
}

/* 3D Wrapped Ribbon banner design matching Mockup */
.plan-price-ribbon-wrapper {
    position: relative !important;
    margin: 20px 0 !important;
    width: calc(100% + 15px) !important;
    left: -15px !important;
    overflow: visible !important;
    z-index: 10 !important;
}

.plan-price-ribbon-fold {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 0 15px 12px 0 !important;
    border-color: transparent var(--theme-color) transparent transparent !important;
    filter: brightness(0.55) !important;
    /* Darker fold color automatically */
    z-index: -1 !important;
}



.plan-price-ribbon {
    height: 52px !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--theme-color) 0%, rgba(var(--theme-color-rgb), 0.85) 100%) !important;
    padding-left: 0 !important;
    box-shadow: 0 4px 12px rgba(var(--theme-color-rgb), 0.15) !important;
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%) !important;
}

.plan-price-num {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;
}

.plan-currency-txt {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 5px !important;
}

/* Card Body list and buttons */
.plan-card-body {
    padding: 12px 28px 12px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.plan-feats-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 12px 0 24px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    flex-grow: 1 !important;
}

.plan-feat-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 13.5px !important;
    color: #475569 !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    text-align: left !important;
}

.plan-feat-icon-svg {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0 !important;
    color: var(--theme-color) !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Centered Rounded pill gradient button matching Mockup */
.plan-action-btn {
    display: inline-block !important;
    width: auto !important;
    align-self: center !important;
    padding: 10px 42px !important;
    /* Slightly wider button breathing room */
    border-radius: 24px !important;
    font-weight: 800 !important;
    font-size: 11.5px !important;
    /* Sleeker typography */
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--theme-color) 0%, rgba(var(--theme-color-rgb), 0.85) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 6px 16px rgba(var(--theme-color-rgb), 0.2) !important;
    margin-top: auto !important;
    /* Force align all card buttons perfectly at the bottom */
}

.plan-action-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(var(--theme-color-rgb), 0.35) !important;
}

.plan-sched-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    margin-top: 14px !important;
    align-self: center !important;
    box-shadow: none !important;
}


/* Extracted from resources/views/auth/influencer_pending.blade.php */
.pending-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.pending-card {
    width: 100%;
    max-width: 540px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    padding: 48px;
    text-align: center;
    position: relative;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #4f46e5;
    position: relative;
}

.icon-box svg {
    width: 36px;
    height: 36px;
    animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.message {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    color: #d97706;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid #fde68a;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #d97706;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.logout-form {
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.btn-logout {
    background: none;
    border: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}

.btn-logout:hover {
    color: #0f172a;
}


/* Extracted from resources/views/auth/influencer_verify.blade.php */
.register-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 24px;
    margin: 0;
    width: 100%;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Continuous laser-sliding animated border spanning the entire width of the page */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #7c3aed, #db2777, #7c3aed);
    background-size: 200% auto;
    animation: slide-laser 3s linear infinite;
}

@keyframes slide-laser {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover {
    transform: scale(1.03) translateY(-1px);
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.brand-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    pointer-events: none;
}

.brand:hover .brand-icon {
    box-shadow: 0 0 25px rgba(219, 39, 119, 0.3);
    transform: rotate(5deg);
}

.brand-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(226, 232, 240, 0.8);
    padding: 6px 14px 6px 6px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-profile-badge:hover {
    border-color: rgba(124, 58, 237, 0.2);
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(124, 58, 237, 0.06);
}

.user-profile-badge span {
    color: #0f172a !important;
}

.nav-edit-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.15);
    border: none;
}

.nav-edit-btn:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #db2777 100%);
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.logout-btn-pill {
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444 !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid rgba(239, 68, 68, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.logout-btn-pill:hover {
    background: #ef4444;
    color: #ffffff !important;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: translateY(-2px);
}

/* Pulsating animation for online verified indicator */
@keyframes pulse-status {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.status-dot-pulse {
    animation: pulse-status 2s infinite;
}

.verify-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.wizard-container {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    padding: 48px;
    position: relative;
    transition: max-width 0.4s ease;
}

@media (max-width: 640px) {
    .wizard-container {
        padding: 32px 20px;
    }
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* ----------------------------------
           1. Choose Platforms Selector Grid
           ---------------------------------- */
.platform-selection-card {
    display: block;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

@media (max-width: 640px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

.platform-item {
    border: 2px solid #cbd5e1;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: #f8fafc;
}

.platform-item:hover {
    border-color: #4f46e5;
    background: #ffffff;
    transform: translateY(-4px);
}

.platform-item.selected {
    border-color: #4f46e5;
    background: rgba(79, 70, 229, 0.03);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.08);
}

.platform-item.selected.platform-instagram {
    border-color: #db2777;
    background: rgba(219, 39, 119, 0.03);
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.08);
}

.platform-item.selected.platform-facebook {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.03);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
}

.platform-item.selected.platform-linkedin {
    border-color: #0e76a8;
    background: rgba(14, 118, 168, 0.03);
    box-shadow: 0 10px 20px rgba(14, 118, 168, 0.08);
}

.platform-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #64748b;
    transition: all 0.3s ease;
}

.platform-item.selected .platform-icon-circle {
    background: #4f46e5;
    border-color: #4f46e5;
    color: white;
}

.platform-item.selected.platform-instagram .platform-icon-circle {
    background: #db2777;
    border-color: #db2777;
}

.platform-item.selected.platform-facebook .platform-icon-circle {
    background: #2563eb;
    border-color: #2563eb;
}

.platform-item.selected.platform-linkedin .platform-icon-circle {
    background: #0e76a8;
    border-color: #0e76a8;
}

.platform-icon-circle svg {
    width: 24px;
    height: 24px;
}

.platform-title-label {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

/* Checkbox checkmark indicators */
.check-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    transition: all 0.3s ease;
}

.platform-item.selected .check-indicator {
    background: #4f46e5;
}

.platform-item.selected.platform-instagram .check-indicator {
    background: #db2777;
}

.platform-item.selected.platform-facebook .check-indicator {
    background: #2563eb;
}

.platform-item.selected.platform-linkedin .check-indicator {
    background: #0e76a8;
}

/* ----------------------------------
           2. Steps Progress Row
           ---------------------------------- */
.progress-steps-row {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.progress-line-bg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #4f46e5, #db2777);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.4s ease;
}

.step-bubble {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #64748b;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.step-bubble.active {
    background: #ffffff;
    border-color: #4f46e5;
    color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.step-bubble.completed {
    background: #4f46e5;
    border-color: #4f46e5;
    color: white;
}

.step-label {
    position: absolute;
    bottom: -24px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.step-bubble.active .step-label {
    color: #4f46e5;
}

/* Panels and Panels layout */
.wizard-form-card {
    display: none;
}

.step-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.step-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .form-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 14px;
    color: #0f172a;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* ----------------------------------
           3. Custom Switch & verified state
           ---------------------------------- */
.verified-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #10b981;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

/* File Upload Zone */
.file-upload-box {
    border: 1.5px dashed #cbd5e1;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-upload-box:hover {
    border-color: #4f46e5;
    background: #f0f5ff;
}

.file-upload-box svg {
    width: 24px;
    height: 24px;
    color: #64748b;
    margin-bottom: 8px;
}

.file-upload-box-text {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.file-upload-box-subtext {
    font-size: 10px;
    color: #64748b;
}

/* Upload grids for multiple screenshot proofs */
.screenshot-previews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 480px) {
    .screenshot-previews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.screenshot-thumbnail {
    position: relative;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    height: 80px;
    overflow: hidden;
    background: #ffffff;
}

.screenshot-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Actions Button Bar */
.actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.btn {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #334155;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
    margin-left: auto;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

/* Error States */
.error-message {
    color: #ef4444;
    font-size: 11px;
    font-weight: 500;
    margin-top: 6px;
    display: none;
}

.social-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.insta-tag {
    background: rgba(219, 39, 119, 0.08);
    color: #db2777;
}

.fb-tag {
    background: rgba(59, 130, 246, 0.08);
    color: #2563eb;
}

.linkedin-tag {
    background: rgba(14, 118, 168, 0.08);
    color: #0e76a8;
}


/* Extracted from resources/views/auth/select_role.blade.php */
.role-selection-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
    z-index: 10;
}

.role-selection-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.role-logo-section {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.role-logo-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}

.role-logo-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.role-logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #0f172a;
}

.role-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 12px;
}

.role-subtitle {
    font-size: 15px;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto 48px auto;
    line-height: 1.6;
}

.role-choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .role-choices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.role-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px 32px;
    cursor: pointer;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.role-card-item:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.12);
}

.role-card-item.card-influencer:hover {
    border-color: rgba(219, 39, 119, 0.4);
    box-shadow: 0 20px 45px rgba(219, 39, 119, 0.12);
}

.role-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.role-card-item.card-influencer .role-icon-box {
    background: rgba(219, 39, 119, 0.08);
    border: 1px solid rgba(219, 39, 119, 0.15);
}

.role-card-item:hover .role-icon-box {
    transform: scale(1.1) rotate(4deg);
    background: #4f46e5;
    border-color: #4f46e5;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
}

.role-card-item:hover .role-icon-box svg {
    color: white;
}

.role-card-item.card-influencer:hover .role-icon-box {
    background: #db2777;
    border-color: #db2777;
    box-shadow: 0 6px 15px rgba(219, 39, 119, 0.3);
}

.role-icon-box svg {
    width: 28px;
    height: 28px;
    color: #4f46e5;
    transition: color 0.3s ease;
}

.role-card-item.card-influencer .role-icon-box svg {
    color: #db2777;
}

.role-card-item.card-influencer:hover .role-icon-box svg {
    color: white;
}

.role-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.role-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.role-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
}

.role-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #334155;
}

.role-bullet-item svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}



/* Extracted from resources/views/welcome.blade.php */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, .05), transparent 70%)
}

/* ===== FLOATING ORBS ===== */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    pointer-events: none;
    z-index: 0
}

.orb1 {
    width: 600px;
    height: 600px;
    background: #c084fc;
    top: -15%;
    left: -10%;
    animation: drift 25s ease-in-out infinite
}

.orb2 {
    width: 500px;
    height: 500px;
    background: #f472b6;
    top: 50%;
    right: -15%;
    animation: drift 20s ease-in-out infinite reverse
}

.orb3 {
    width: 400px;
    height: 400px;
    background: #60a5fa;
    bottom: -10%;
    left: 35%;
    animation: drift 22s ease-in-out infinite 5s
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(50px, -60px) scale(1.08)
    }

    66% {
        transform: translate(-40px, 50px) scale(.92)
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 250, 252, .75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px)
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .15), rgba(219, 39, 119, .1), transparent)
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 2rem
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to top right, #7c3aed, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(219, 39, 119, .15)
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem
}

.logo-text {
    display: flex;
    flex-direction: column
}

.logo-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    background: linear-gradient(to right, #0f172a, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.logo-sub {
    font-size: 0.6rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -2px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: #475569;
    transition: color .3s;
    position: relative
}

.nav-links a:hover {
    color: #0f172a
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #db2777);
    border-radius: 2px;
    transition: width .3s
}

.nav-links a:hover::after {
    width: 100%
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.btn-login {
    font-size: .875rem;
    font-weight: 500;
    color: #475569;
    transition: color .3s;
    padding: .5rem 1rem
}

.btn-login:hover {
    color: #0f172a
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .6rem 1.4rem;
    font-weight: 600;
    font-size: .875rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .3s
}

.btn-glow {
    background: linear-gradient(to top right, #7c3aed, #db2777);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(219, 39, 119, .15)
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(219, 39, 119, .25)
}

.btn-ghost {
    background: rgba(0, 0, 0, .03);
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, .08)
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, .06);
    border-color: rgba(0, 0, 0, .15);
    transform: translateY(-2px)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.03)
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: blink 2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.12;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em
}

.hero .grad {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2.2rem;
    line-height: 1.8;
    font-weight: 450
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .75rem 1.75rem;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

.btn-glow {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #fff;
    box-shadow: 0 15px 30px rgba(219, 39, 119, 0.2)
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(219, 39, 119, 0.3)
}

.btn-ghost {
    background: rgba(0, 0, 0, .03);
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, .08)
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, .06);
    border-color: rgba(0, 0, 0, .15);
    transform: translateY(-3px)
}

.hero-trust {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 16px
}

.avatars {
    display: flex
}

.avatars span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1)
}

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

.av1 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%)
}

.av2 {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%)
}

.av3 {
    background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%)
}

.av4 {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%)
}

.trust-txt {
    font-size: .9rem;
    color: #64748b;
    font-weight: 500
}

.trust-txt strong {
    color: #0f172a;
    font-weight: 700
}

/* ===== MINIMALIST PREMIUM HERO SHOWCASE ===== */
.hero-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 3.5rem
}

.handwritten-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    width: 100%;
    pointer-events: none;
    animation: floatCallout 3.5s ease-in-out infinite
}

.handwritten-badge span {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    font-weight: 700;
    color: #db2777;
    letter-spacing: 0.02em;
    text-shadow: 0 1.5px 3px rgba(219, 39, 119, 0.12)
}

.handwritten-arrow {
    margin-top: 2px;
    transform-origin: top center;
    animation: springyPoint 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite
}

@keyframes floatCallout {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateX(-50%) translateY(-5px) rotate(-2deg);
    }
}

@keyframes springyPoint {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(2deg);
        filter: drop-shadow(0 0 0px rgba(219, 39, 119, 0));
    }

    50% {
        transform: translateY(8px) scale(1.08) rotate(-5deg);
        filter: drop-shadow(0 0 5px rgba(219, 39, 119, 0.35));
    }
}

/* ===== HIGHLIGHTED INSTAGRAM POST CARD MOCKUP ===== */
.instagram-post-card {
    width: 330px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    border-radius: 28px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.instagram-post-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

.post-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.post-user-avatar {
    position: relative;
    width: 36px;
    height: 36px;
    margin-right: 12px;
}

.avatar-glow-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    padding: 2px;
}

.avatar-initials {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    border: 2px solid #fff;
}

.post-user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-username {
    font-size: 0.85rem;
    font-weight: 750;
    color: #0f172a;
}

.post-location {
    font-size: 0.7rem;
    color: #db2777;
    font-weight: 700;
}

.post-more-options {
    color: #64748b;
    display: flex;
    align-items: center;
}

.post-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f8fafc;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.post-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.post-left-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.post-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #0f172a;
    transition: transform 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.post-action-btn:hover {
    transform: scale(1.1);
}

.action-like svg {
    width: 20px;
    height: 20px;
    fill: #ef4444;
    /* Vibrant Instagram filled red heart */
    stroke: #ef4444;
}

.action-comment svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #0f172a;
    stroke-width: 2;
}

.action-share svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #0f172a;
    stroke-width: 2;
}

.action-count {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
}

.post-right-actions {
    color: #64748b;
    display: flex;
    align-items: center;
}

.post-details {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    padding-top: 12px;
}

.post-likes-count {
    font-size: 0.8rem;
    color: #475569;
}

.post-likes-count strong {
    color: #0f172a;
    font-weight: 700;
}

.post-caption {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.45;
}

.post-caption strong {
    color: #0f172a;
    font-weight: 750;
    margin-right: 4px;
}

/* ===== FEATURES ===== */
.features {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem
}

.sec-head {
    text-align: center;
    margin-bottom: 4rem
}

.sec-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(236, 72, 153, .04);
    border: 1px solid rgba(236, 72, 153, .15);
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    color: #db2777;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem
}

.sec-head h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .8rem
}

.sec-head p {
    color: #475569;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1rem
}

.feat-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.feat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 2rem;
    transition: all .4s;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015)
}

.feat-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--ac) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s
}

.feat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04)
}

.feat-card:hover::before {
    opacity: 1
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    background: var(--icon-bg)
}

.feat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--ac);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.feat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .5rem
}

.feat-card p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.65
}

/* ===== CTA ===== */
.cta {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    text-align: center
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(124, 58, 237, .03);
    border: 1px solid rgba(124, 58, 237, .1);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02)
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #ec4899, #db2777);
    border-radius: 24px 24px 0 0
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem
}

.cta-box p {
    color: #475569;
    margin-bottom: 2rem
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, .04);
    font-size: .85rem;
    color: #64748b
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-btns,
    .hero-trust {
        justify-content: center
    }

    .hero-showcase {
        margin-top: 4rem
    }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .nav-links {
        display: none
    }

    .hero h1 {
        font-size: 2.4rem
    }
}

@media(max-width:480px) {
    .handwritten-badge {
        display: none
    }

    .hero-showcase {
        max-width: 290px
    }

    .instagram-post-card {
        width: 280px
    }

    .post-action-btn {
        padding: 4px 8px;
        gap: 4px
    }

}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 3rem auto 0 auto;
    justify-content: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.plan-type-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.04);
    color: #475569;
    margin-bottom: 1.5rem;
}

.plan-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1;
}

.plan-currency {
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
}

.plan-original-price {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 0.5rem;
    align-self: center;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
    text-align: left;
}

.plan-feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.plan-btn-primary {
    color: #ffffff;
}

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

.plan-btn-secondary {
    background: rgba(0, 0, 0, 0.03);
    color: #0f172a;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
}

.plan-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.plan-scheduling-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b45309;
    background: #fef3c7;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    margin-top: 1rem;
    align-self: center;
}

/* Fix for SVG inside button flexbox squishing issue */
button svg {
    flex-shrink: 0;
}
.plan-badge-discount {
    position: absolute !important;
    top: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 8px 24px !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4) !important;
    border: 3px solid #ffffff !important;
    white-space: nowrap !important;
    animation: discountPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 20 !important;
}

@keyframes discountPulse {
    0% { transform: translateX(-50%) scale(1); box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4), 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { transform: translateX(-50%) scale(1.08); box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4), 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: translateX(-50%) scale(1); box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4), 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ==========================================================================
   Premium Social Media Web View UI Styles
   ========================================================================== */

/* Three Column Layout structure */
.social-layout-grid {
    display: grid;
    grid-template-columns: 230px minmax(0, 520px) 300px;
    gap: 24px;
    max-width: 1440px;
    width: 100%;
    margin: 12px auto;
    padding: 0 28px;
    align-items: start;
    box-sizing: border-box;
    justify-content: center;
}

/* Left Sidebar Sticky setup */
.social-left-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Middle Feed Setup */
.social-middle-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    width: 100%;
}

/* Right Sidebar Setup */
.social-right-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* Sidebar Menu styling */
.social-sidebar-menu {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
}

/* Compact sidebar identity strip (replaces old profile card) */
.sidebar-identity-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px 12px 12px;
}

.sidebar-identity-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.25);
}

.sidebar-identity-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sidebar-identity-avatar span:first-child {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.sidebar-identity-dot {
    position: absolute !important;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.sidebar-identity-info {
    min-width: 0;
    flex: 1;
}

.sidebar-identity-name {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-identity-role {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 99px;
}

.sidebar-identity-role.role-client {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.sidebar-identity-role.role-influencer {
    background: rgba(219, 39, 119, 0.08);
    color: #db2777;
    border: 1px solid rgba(219, 39, 119, 0.15);
}

/* Sidebar divider */
.sidebar-divider {
    height: 1px;
    background: rgba(226, 232, 240, 0.8);
    margin: 4px 8px;
    border-radius: 1px;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.sidebar-menu-item svg {
    color: #64748b;
    transition: color 0.2s, transform 0.2s;
    width: 18px;
    height: 18px;
}

.sidebar-menu-item:hover {
    background: rgba(124, 58, 237, 0.06);
    color: #7c3aed;
}

.sidebar-menu-item:hover svg {
    color: #7c3aed;
    transform: scale(1.1);
}

.sidebar-menu-item.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(219, 39, 119, 0.03) 100%);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.sidebar-menu-item.active svg {
    color: #7c3aed;
}

.sidebar-menu-item-logout:hover {
    background: rgba(239, 68, 68, 0.06) !important;
    color: #ef4444 !important;
}

.sidebar-menu-item-logout:hover svg {
    color: #ef4444 !important;
}

/* Post Creator Box Style */
.social-post-creator {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
}

.creator-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.creator-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.creator-form {
    flex-grow: 1;
}

.creator-url-input-wrapper {
    position: relative;
    width: 100%;
}

.creator-url-input {
    width: 100%;
    border: 1.5px solid #cbd5e1;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 550;
    color: #0f172a;
    outline: none;
    transition: all 0.2s;
    background: #f8fafc;
}

.creator-url-input:focus {
    border-color: #7c3aed;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.creator-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.creator-social-toggles {
    display: flex;
    gap: 8px;
    align-items: center;
}

.creator-toggle-btn {
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.creator-toggle-btn:hover {
    border-color: #cbd5e1;
    color: #475569;
}

.creator-toggle-btn.active[data-platform="Instagram"] {
    background: #fdf4ff;
    color: #d946ef;
    border-color: #fae8ff;
}

.creator-toggle-btn.active[data-platform="Facebook"] {
    background: #eff6ff;
    color: #2563eb;
    border-color: #dbeafe;
}

.creator-toggle-btn.active[data-platform="LinkedIn"] {
    background: #f0f9ff;
    color: #0284c7;
    border-color: #e0f2fe;
}

.creator-submit-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.creator-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.3);
}

/* Feed Platform Filter Tabs styling */
.feed-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.02);
}

.feed-filter-tab {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.feed-filter-tab:hover {
    background: #f1f5f9;
    color: #475569;
}

.feed-filter-tab.active {
    background: #0f172a;
    color: white;
}

.feed-filter-tab.active[data-platform="Instagram"] {
    background: #d946ef;
    color: white;
}

.feed-filter-tab.active[data-platform="Facebook"] {
    background: #2563eb;
    color: white;
}

.feed-filter-tab.active[data-platform="LinkedIn"] {
    background: #0284c7;
    color: white;
}

/* Social Feed Post Card styling */
.social-feed-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s ease;
}

.social-feed-card:hover {
    border-color: rgba(226, 232, 240, 1);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.04);
}

.feed-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-card-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feed-card-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
}

.feed-card-author-name {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

.feed-card-author-handle {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    margin: 2px 0 0 0;
}

.feed-card-platform-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.platform-icon-instagram {
    background: #fdf4ff;
    color: #d946ef;
    border-color: #fae8ff;
}

.platform-icon-facebook {
    background: #eff6ff;
    color: #2563eb;
    border-color: #dbeafe;
}

.platform-icon-linkedin {
    background: #f0f9ff;
    color: #0284c7;
    border-color: #e0f2fe;
}

.feed-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-card-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feed-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.feed-card-quote-box {
    background: #f8fafc;
    border-left: 3px solid #7c3aed;
    border-radius: 0 12px 12px 0;
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
    margin: 4px 0 0 0;
}

.feed-card-nested-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.2s;
}

.feed-card-nested-preview:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.nested-preview-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.nested-preview-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
}

.nested-preview-url-text {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nested-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.nested-preview-btn:hover {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}

.feed-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed rgba(226, 232, 240, 0.8);
    padding-top: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
    gap: 12px;
}

.feed-card-engagement-goals {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.feed-card-engagement-goals svg {
    color: #cbd5e1;
}

.feed-card-reward-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffbeb;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #fef3c7;
}

.reward-coin-gold {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(234, 88, 12, 0.2);
    color: white;
    font-size: 9px;
    font-weight: 900;
}

.reward-text {
    font-weight: 800;
    color: #d97706;
    font-size: 13px;
}

.feed-card-action-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.feed-card-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

/* Glassmorphic Widget card style (Right Sidebar) */
.social-widget-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
}

.widget-header-title {
    font-size: 15px;
    font-weight: 850;
    color: #0f172a;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* circular dial progress for plans */
.circular-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.progress-dial-svg {
    transform: rotate(-90deg);
}

.progress-dial-bg {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 8;
}

.progress-dial-fill {
    fill: none;
    stroke: url(#purple-pink-gradient);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.progress-dial-text-percentage {
    font-size: 20px;
    font-weight: 900;
    fill: #0f172a;
    text-anchor: middle;
    alignment-baseline: middle;
}

.progress-dial-text-label {
    font-size: 9px;
    font-weight: 700;
    fill: #94a3b8;
    text-anchor: middle;
    alignment-baseline: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-usage-text {
    text-align: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
}

.widget-usage-text strong {
    color: #0f172a;
}

/* suggested tasks list */
.suggested-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggested-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.suggested-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.suggested-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #7c3aed;
    flex-shrink: 0;
}

.suggested-info {
    flex-grow: 1;
    min-width: 0;
}

.suggested-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggested-desc {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    margin: 2px 0 0 0;
}

/* Persistent Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1.5px solid rgba(226, 232, 240, 0.8);
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.03);
    justify-content: space-around;
    align-items: center;
    padding: 0 12px;
}

.mobile-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 10px;
    font-weight: 750;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
}

.mobile-nav-btn svg {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    transition: transform 0.2s;
}

.mobile-nav-btn:hover,
.mobile-nav-btn.active {
    color: #7c3aed;
}

.mobile-nav-btn:hover svg,
.mobile-nav-btn.active svg {
    color: #7c3aed;
    transform: scale(1.08);
}

/* ==========================================================================
   RESPONSIVE LAYOUT — Dashboard & App Shell
   Breakpoints: 1200px (tablet/medium), 900px (small tablet), 768px (mobile)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TABLET / MEDIUM (≤ 1200px) — Icon-only left sidebar, no right sidebar
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    /* Grid: icon sidebar + full middle */
    .social-layout-grid {
        grid-template-columns: 72px 1fr;
        gap: 16px;
        padding: 0 20px;
        margin: 16px auto;
    }

    /* Hide right sidebar */
    .social-right-sidebar {
        display: none;
    }

    /* Shrink sidebar to icon-only */
    .social-sidebar-menu {
        padding: 8px 6px;
        border-radius: 18px;
    }

    .sidebar-identity-strip {
        justify-content: center;
        padding: 10px 0 12px;
    }

    .sidebar-identity-avatar {
        width: 36px;
        height: 36px;
    }

    .sidebar-identity-info {
        display: none;
    }

    .sidebar-menu-item {
        padding: 12px;
        justify-content: center;
        border-radius: 12px;
    }

    .sidebar-menu-item span {
        display: none;
    }

    .pv-menu-header, .pv-manage-text, .pv-text-container, .pv-badge {
        display: none !important;
    }

    .pv-row, .pv-manage-btn {
        justify-content: center !important;
        padding: 10px 0 !important;
    }

    .pv-icon {
        margin: 0 !important;
    }

    .sidebar-menu-item svg {
        width: 20px;
        height: 20px;
    }

    .sidebar-divider {
        margin: 6px 8px;
    }

    /* Welcome hero adjustments */
    .welcome-hero {
        padding: 24px 28px !important;
        gap: 24px !important;
    }

    .welcome-title {
        font-size: 20px !important;
    }

    /* Plans grid - 2 columns */
    .plans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    /* Influencer split layout - stack vertically */
    .available-feed-container,
    .participated-feed-container {
        gap: 16px;
    }
}

/* --------------------------------------------------------------------------
   2. SMALL TABLET (≤ 900px) — tighter spacing
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .social-layout-grid {
        grid-template-columns: 64px 1fr;
        gap: 12px;
        padding: 0 16px;
        margin: 12px auto;
    }

    /* Plans grid - single column */
    .plans-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Dashboard two-column section becomes stacked */
    #dashboard_content > div:first-child {
        flex-direction: column !important;
        gap: 20px !important;
    }

    #dashboard_content > div:first-child > div {
        min-width: 100% !important;
        flex: none !important;
    }

    /* Campaign feed cards */
    .social-feed-card {
        padding: 18px;
        border-radius: 18px;
    }

    .feed-card-tags-row {
        gap: 6px;
    }

    .welcome-hero {
        padding: 20px 22px !important;
    }

    .welcome-title {
        font-size: 18px !important;
    }

    .welcome-desc {
        font-size: 13px !important;
    }

    /* Welcome avatar shrink */
    .welcome-avatar-wrapper {
        width: 52px !important;
        height: 52px !important;
    }
}

/* --------------------------------------------------------------------------
   3. MOBILE (≤ 768px) — Full single column, bottom nav, sidebar hidden
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Single column layout */
    .social-layout-grid {
        grid-template-columns: 1fr;
        padding: 12px 16px 80px 16px; /* bottom offset for nav */
        gap: 0;
        margin: 0 auto;
        max-width: 100%;
    }

    /* Hide left sidebar — replaced by bottom nav */
    .social-left-sidebar {
        display: none;
    }

    /* Show mobile bottom nav */
    .mobile-bottom-nav {
        display: flex;
    }

    /* Navbar compact */
    .navbar {
        padding: 10px 16px;
    }

    .navbar-inner .nav-user {
        display: none !important;
    }

    .brand-title {
        font-size: 16px;
    }

    /* Middle feed full width */
    .social-middle-feed {
        gap: 16px;
    }

    /* ── Welcome Hero ── */
    .welcome-hero {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
        gap: 16px !important;
        border-radius: 18px !important;
        margin-bottom: 20px !important;
    }

    .welcome-hero-left {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .welcome-hero-left > div:first-child {
        gap: 14px !important;
    }

    .welcome-avatar-wrapper {
        width: 48px !important;
        height: 48px !important;
    }

    .welcome-title {
        font-size: 17px !important;
        line-height: 1.3 !important;
    }

    .welcome-desc {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* ── Dashboard Content — Plan + Campaigns ── */
    #dashboard_content > div:first-child {
        flex-direction: column !important;
        gap: 16px !important;
    }

    #dashboard_content > div:first-child > div {
        min-width: 100% !important;
        flex: none !important;
    }

    /* Plans section */
    .plans-section-title {
        font-size: 18px !important;
    }

    .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .plan-card {
        max-width: 100% !important;
    }

    /* ── Feed Cards ── */
    .social-feed-card {
        padding: 16px;
        border-radius: 16px;
        gap: 12px;
    }

    .feed-card-header {
        gap: 8px;
    }

    .feed-card-id {
        font-size: 12px;
    }

    .feed-card-date {
        font-size: 10px;
    }

    .feed-card-tags-row {
        gap: 5px;
        flex-wrap: wrap;
    }

    .feed-card-tag {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }

    .feed-card-nested-preview {
        padding: 10px 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .nested-preview-url-text {
        font-size: 11px;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .feed-card-footer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .feed-card-engagement-goals {
        font-size: 12px;
    }

    /* ── Influencer Available Campaigns heading ── */
    .available-feed-container,
    .participated-feed-container {
        gap: 14px;
    }

    /* ── Onboarding CTA banner ── */
    #onboarding_cta {
        flex-direction: column !important;
        padding: 32px 24px !important;
        gap: 20px !important;
        border-radius: 20px !important;
    }

    #onboarding_cta h2 {
        font-size: 22px !important;
    }

    #onboarding_cta > div:last-child {
        display: none !important; /* Hide decorative phone mockup on mobile */
    }

    /* ── Campaign section heading row ── */
    [style*="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px"] {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* ── "My Current Plan" card ── */
    [style*="align-items:center;justify-content:space-between;flex-wrap:wrap"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }

    /* ── Session/error alert banners ── */
    [style*="padding: 16px; border-radius: 12px; margin-bottom: 24px"] {
        font-size: 13px !important;
        padding: 12px !important;
    }

    /* ── Influencer campaign heading ── */
    h2[style*="font-size: 22px"] {
        font-size: 17px !important;
    }

    /* ── Instagram/Facebook/LinkedIn embed area ── */
    .available-feed-container iframe,
    .available-feed-container blockquote {
        min-height: 340px !important;
    }

    /* ── Participate button ── */
    [style*="padding: 13px 0; background: linear-gradient"] {
        padding: 12px 0 !important;
        font-size: 13px !important;
    }

    /* ── Custom tooltip ── */
    .custom-tooltip-text {
        width: 200px !important;
        font-size: 11px !important;
    }
}

/* --------------------------------------------------------------------------
   4. EXTRA SMALL (≤ 480px) — Phones in portrait
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .social-layout-grid {
        padding: 10px 12px 76px 12px;
    }

    .welcome-hero {
        padding: 16px !important;
    }

    .welcome-title {
        font-size: 15px !important;
    }

    .social-feed-card {
        padding: 14px;
        border-radius: 14px;
    }

    .feed-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .feed-card-action-btn {
        width: 100%;
        justify-content: center;
    }

    .plans-section-title {
        font-size: 16px !important;
    }

    /* Bottom nav larger touch targets */
    .mobile-bottom-nav {
        height: 64px;
    }

    .mobile-nav-btn {
        font-size: 10px;
    }

    .mobile-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Influencer embed frames */
    .available-feed-container iframe,
    .available-feed-container blockquote {
        min-height: 300px !important;
    }

    /* Heading sizes */
    h2[style*="font-size: 22px"],
    h2[style*="font-size: 20px"] {
        font-size: 15px !important;
    }
}


/* ---------------------------------------------------------------------------
   Platform Verification sidebar widget rows (Global)
   --------------------------------------------------------------------------- */
.pv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 9px 10px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.18s ease;
    text-align: left;
}

.pv-row:hover {
    background: rgba(124, 58, 237, 0.05);
}

.pv-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pv-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.pv-sublabel {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 1px;
}

.pv-badge {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 8px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}


/* Instagram Profile Page Styles */
.ig-profile-container {
    max-width: 935px;
    margin: 0 auto;
    padding: 30px 20px;
    width: 100%;
}

.ig-profile-header {
    display: flex;
    margin-bottom: 44px;
}

.ig-profile-avatar-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-right: 30px;
}

.ig-profile-avatar, .ig-profile-avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #dbdbdb;
}

.ig-profile-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: white;
    font-size: 60px;
    font-weight: 800;
}

.ig-profile-info {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.ig-profile-title-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.ig-profile-username {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.ig-profile-edit-btn, .ig-profile-action-btn {
    background-color: #efefef;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.ig-profile-edit-btn:hover, .ig-profile-action-btn:hover {
    background-color: #dbdbdb;
}

.ig-profile-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    font-size: 16px;
}

.ig-profile-bio {
    font-size: 14px;
    line-height: 1.5;
}

.ig-profile-fullname {
    font-weight: 600;
}

.ig-profile-link {
    color: #00376b;
    font-weight: 600;
    text-decoration: none;
}

.ig-profile-tabs {
    display: flex;
    justify-content: center;
    border-top: 1px solid #dbdbdb;
    gap: 60px;
}

.ig-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 600;
    color: #737373;
    letter-spacing: 1px;
    cursor: pointer;
    border-top: 1px solid transparent;
    margin-top: -1px;
}

.ig-tab.active {
    color: #000;
    border-top: 1px solid #000;
}

.ig-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 15px;
}

.ig-post-item {
    position: relative;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-color: #efefef;
    cursor: pointer;
}

.ig-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transition: opacity 0.2s;
}

.ig-post-item:hover .ig-post-overlay {
    opacity: 1;
}

.ig-post-stat {
    color: white;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ig-no-posts {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.ig-no-posts-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ig-no-posts h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.ig-no-posts p {
    font-size: 14px;
    margin: 0 0 24px 0;
}

.ig-share-btn {
    color: #0095f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 735px) {
    .ig-profile-header {
        margin-bottom: 24px;
    }
    
    .ig-profile-avatar-wrapper {
        margin-right: 28px;
    }
    
    .ig-profile-avatar, .ig-profile-avatar-placeholder {
        width: 77px;
        height: 77px;
        font-size: 30px;
    }
    
    .ig-profile-stats {
        display: none; /* Moved to below bio on mobile typically */
    }
    
    .ig-posts-grid {
        gap: 3px;
    }
}
