* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: white;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.screen {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.screen.active {
    display: flex;
}

/* Splash Screen Styles */
#splashScreen {
    justify-content: center;
}

.logo-container {
    margin-bottom: 30px;
}

/* Animated Rings Loading Spinner */
.rings-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 24px;
}

.rings-loading-overlay.active {
    display: flex;
}

.rings-loader {
    width: 140px;
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simple wrapper - no rotation */
.loading-spinner-wrapper {
    width: 110px;
    height: 110px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo - transparent background, no block, with rotation */
.rings-loader .logo-circle-rotating {
    width: 100px;
    height: 100px;
    display: block;
    animation: rotateAndPulse 2s ease-in-out infinite;
    z-index: 2;
    object-fit: contain;
    position: relative;
    background: transparent;
}

.rings-loader .logo-circle-rotating-fallback {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 4px solid #ffffff;
    animation: rotateAndPulse 2s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

/* Rotation Animation Keyframes */
@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes rotateAndPulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.rings-loading-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rings-loading-subtext {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    margin-top: -12px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid #e0e0e0;
}

.encrypted-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.lock-icon {
    width: 16px;
    height: 16px;
    color: #333;
}

/* Header Logo - Top Middle */
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}

.header-logo .logo-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0f172a;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    display: block;
    margin: 0 auto;
    background: #ffffff;
    flex-shrink: 0;
}

/* Authentication & Setup Screens General */
#termsScreen,
#loginScreen,
#signupScreen,
#verificationScreen,
#profileSetupScreen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 24px 44px 24px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    min-height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
}

#termsScreen.active,
#loginScreen.active,
#signupScreen.active,
#verificationScreen.active,
#profileSetupScreen.active {
    display: flex !important;
}

#termsScreen > *,
#loginScreen > *,
#signupScreen > *,
#verificationScreen > *,
#profileSetupScreen > * {
    flex-shrink: 0;
}

#termsScreen h2,
#loginScreen h2,
#signupScreen h2,
#verificationScreen h2,
#profileSetupScreen h2 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 18px auto;
    text-align: center;
    letter-spacing: -0.4px;
    width: 100%;
    flex-shrink: 0;
}

/* Grey Block Styles */
.grey-block {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    flex-shrink: 0;
}

.grey-block.scrollable {
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.terms-content h3 {
    color: #0f172a;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.terms-content p {
    color: #475569;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.terms-content strong {
    color: #0f172a;
    font-weight: 700;
}

/* Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px auto;
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    width: 100%;
    flex-shrink: 0;
}

#agreeCheckbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0f172a;
}

.checkbox-container label {
    cursor: pointer;
    user-select: none;
}

/* Button Styles */
.button-group {
    display: flex;
    gap: 12px;
    width: 100%;
    margin: 16px auto 0 auto;
    box-sizing: border-box;
    flex-shrink: 0;
}

.btn {
    padding: 0 20px;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

.button-group .btn {
    flex: 1 0 0;
}

.btn-cancel {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
}

.btn-cancel:hover {
    background: #e2e8f0;
}

.btn-continue {
    background: #cbd5e1;
    color: #64748b;
    border-radius: 8px;
    cursor: not-allowed;
}

.btn-continue:enabled {
    background: #000000;
    color: #ffffff;
    cursor: pointer;
}

.btn-continue:enabled:hover {
    background: #1e293b;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    width: 100%;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 0 20px;
    margin: 16px auto 0 auto;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
    box-sizing: border-box;
    flex-shrink: 0;
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
}

/* Auth Divider (OR) */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px auto 10px auto;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.auth-divider .divider-line {
    flex: 1;
    height: 1px;
    background: #cbd5e1;
}

.auth-divider span {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 800;
    letter-spacing: 0.8px;
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
    text-align: left;
    width: 100%;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: left;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #64748b;
    pointer-events: none;
}

.input-container input {
    width: 100%;
    height: 48px;
    padding: 0 42px 0 42px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.input-container input::placeholder,
.input-container textarea::placeholder {
    color: #94a3b8;
    font-size: 13.5px;
    font-weight: 500;
    opacity: 1;
}

.input-container input:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #0f172a;
}

.forgot-password {
    display: block;
    text-align: right;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Switch Form Link */
.switch-form {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    margin-top: 18px;
    text-align: center;
    width: 100%;
    max-width: 440px;
    flex-shrink: 0;
}

.switch-form a {
    color: #0f172a;
    font-weight: 800;
    text-decoration: underline;
    margin-left: 4px;
}

.switch-form a:hover {
    opacity: 0.8;
}

/* Button Loading State */
.btn-loading {
    background: #ccc !important;
    color: #888 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Custom Notification */
.notification {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    background: #0f172a;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
    z-index: 10000;
    opacity: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 90%;
    min-width: 280px;
    text-align: center;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.2px;
}

.notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.notification.success,
.notification.error,
.notification.info {
    background: #0f172a;
    border-left: none;
}

/* Verification Screen Styles */
.verification-text {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
}

.verification-text strong {
    color: #0f172a;
    font-weight: 700;
}

.verification-methods {
    display: flex;
    gap: 10px;
    margin: 0 auto 18px auto;
    width: 100%;
}

.method-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

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

.method-btn.active {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
}

.verification-method-content {
    width: 100%;
    margin: 0 auto;
}

.verification-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}

.verify-instruction {
    color: #475569;
    font-size: 14px;
    text-align: center;
    margin: 6px 0;
    line-height: 1.5;
}

.otp-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
    width: 100%;
}

.otp-input {
    width: 46px;
    height: 52px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
    transition: all 0.2s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.spam-text {
    color: #64748b;
    font-size: 13px;
    text-align: center;
    margin: 16px auto 0 auto;
    width: 100%;
}

.underlined {
    text-decoration: underline;
    color: #0f172a;
    font-weight: 700;
}

.underlined:hover {
    opacity: 0.75;
}

/* Profile Setup Screen Styles */
.profile-image-container {
    margin: 10px auto 20px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.profile-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #0f172a;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

.profile-circle:hover {
    transform: scale(1.04);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-placeholder {
    width: 56px;
    height: 56px;
    color: #94a3b8;
}

.camera-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid white;
}

.camera-icon svg {
    width: 16px;
    height: 16px;
}

.image-hint {
    color: #64748b;
    font-size: 12.5px;
    font-weight: 600;
    margin-top: 10px;
}

.wotox-id-group {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.at-sign {
    position: absolute;
    left: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
    pointer-events: none;
}

.btn-browse {
    background: #0f172a;
    color: white;
    height: 48px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: background 0.2s;
}

.btn-browse:hover {
    background: #1e293b;
}

.id-hint {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 6px;
}

.input-container textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14.5px;
    background: white;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
    outline: none;
    transition: all 0.2s ease;
}

.input-container textarea:focus {
    outline: none;
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.input-container:has(textarea) .input-icon {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 18px;
    height: 18px;
    color: #64748b;
    pointer-events: none;
}

/* Main Screen Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.main-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.menu-btn svg {
    width: 24px;
    height: 24px;
    color: white;
}

.dropdown-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    background: #fafafa;
    border: 2px solid #d0d0d0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 8px;
    min-width: 250px;
    display: none;
    z-index: 1000;
    transform-origin: top right;
    animation: menuSlideIn 0.3s ease;
}

@keyframes menuSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-menu.show {
    display: block;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 4px 0;
    transition: background 0.2s, transform 0.1s;
}

.menu-item:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-item svg {
    width: 24px;
    height: 24px;
    color: #333;
    flex-shrink: 0;
}

.menu-item span {
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.main-content {
    margin-top: 80px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.main-content h2 {
    color: #333;
    margin-bottom: 10px;
}

.main-content p {
    color: #666;
    font-size: 16px;
}

/* Verification Methods */
.verification-methods {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
}

.method-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.method-btn:hover {
    background: #ebebeb;
}

.method-btn.active {
    background: #000;
    border-color: #000;
    color: white;
}

.method-btn svg {
    flex-shrink: 0;
}

.verification-method-content {
    width: 100%;
}

/* Redesigned Profile Interface */
.profile-header-redesign {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.back-btn-redesign {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.back-btn-redesign:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

.back-btn-redesign:active {
    transform: scale(0.95);
}

.back-btn-redesign svg {
    color: #495057;
}

.header-title {
    font-size: 17px;
    font-weight: 600;
    color: #212529;
    letter-spacing: -0.3px;
}

.profile-content-redesign {
    padding-top: 70px;
    padding-bottom: 30px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: calc(100vh - 70px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.profile-content-redesign::-webkit-scrollbar {
    display: none;
}

.profile-card-wrapper {
    background: white;
    border-radius: 0;
    padding: 28px 24px;
    margin: 0;
    box-shadow: none;
}

.share-profile-btn {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    font-size: 15px;
    font-weight: 600;
    color: #495057;
}

.share-profile-btn:hover {
    background: #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.profile-pic-section {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.profile-pic-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-pic-wrapper:hover {
    transform: scale(1.05);
}

.profile-pic-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.profile-pic-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.profile-pic-placeholder svg {
    color: #adb5bd;
}

.camera-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(73, 80, 87, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.camera-overlay svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.info-block-redesign {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.info-row-editable {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.info-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-text-wrapper.full-width {
    width: 100%;
}

.info-label-redesign {
    font-size: 11px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-value-redesign {
    font-size: 15px;
    font-weight: 500;
    color: #212529;
    letter-spacing: -0.2px;
    word-break: break-word;
}

.editable-input,
.editable-textarea {
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #212529;
    letter-spacing: -0.2px;
    padding: 0;
    width: 100%;
    font-family: inherit;
}

.editable-input:not([readonly]),
.editable-textarea:not([readonly]) {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
}

.editable-textarea {
    resize: vertical;
    min-height: 60px;
}

.edit-btn-redesign,
.copy-btn-redesign {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.edit-btn-redesign:hover,
.copy-btn-redesign:hover {
    background: #f1f5f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.logout-btn-redesign {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #fecaca;
    color: #dc2626;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.logout-btn-redesign:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    transform: translateY(-1px);
}

/* Share Profile Popup */
.share-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.share-popup-overlay.show {
    display: flex;
}

.share-popup {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideUp 0.3s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.share-popup::-webkit-scrollbar {
    display: none;
}

@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.share-popup-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.share-popup-header h3 {
    font-size: 19px;
    font-weight: 600;
    color: #212529;
    margin: 0;
    letter-spacing: -0.3px;
}

.close-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-share-btn:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.close-share-btn svg {
    color: #495057;
}

.share-popup-content {
    padding: 24px;
}

.share-section {
    margin-bottom: 24px;
}

.share-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.profile-link-info {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.link-details {
    margin-bottom: 14px;
}

.link-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.link-row:last-child {
    border-bottom: none;
}

.link-key {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
}

.link-value {
    font-size: 13px;
    font-weight: 500;
    color: #212529;
}

.profile-link-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-link-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    color: #495057;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
}

.copy-link-btn {
    background: #e2e8f0;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
}

.toggle-switch-share {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

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

.toggle-slider-share {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #cbd5e1;
    transition: all 0.3s ease;
    border-radius: 28px;
}

.toggle-slider-share:before {
    position: absolute;
    content: "";
    height: 22px; width: 22px;
    left: 3px; bottom: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

input:checked + .toggle-slider-share {
    background: #0f172a;
}

input:checked + .toggle-slider-share:before {
    transform: translateX(22px);
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.nav-item:active {
    transform: scale(0.95);
}

.nav-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    fill: #666;
}

.nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.nav-item.active {
    color: #000;
}

.nav-item.active svg {
    fill: #000;
}

#mainScreen {
    padding-bottom: 80px;
}

/* Create Community Screen */
#createCommunityScreen {
    background: #ffffff;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-y: auto !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.create-community-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.create-community-header .header-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    flex: 1;
}

.community-header-back-btn,
.community-header-settings-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #0f172a;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.community-header-back-btn:hover,
.community-header-settings-btn:hover {
    background: #f1f5f9;
}

.create-community-content {
    padding-top: 20px;
    padding-bottom: 60px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    box-sizing: border-box;
}

.community-pic-container {
    margin: 30px 0 20px;
    text-align: center;
}

.community-pic-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e0e0e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.community-pic-circle img {
    width: 100%; height: 100%; object-fit: cover;
}

.community-pic-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}

.camera-icon-community {
    position: absolute;
    bottom: 0; right: 0;
    width: 32px; height: 32px;
    background: #000;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid white;
}

.community-form-container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.form-group-community {
    margin-bottom: 20px;
}

.form-group-community label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.community-id-group {
    display: flex; gap: 10px; align-items: center;
}

.hash-sign {
    position: absolute; left: 15px; font-size: 18px; font-weight: bold; color: #757575; pointer-events: none; z-index: 1;
}

.btn-browse-id {
    background: #000;
    color: white;
    height: 48px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.visibility-options {
    display: flex; gap: 10px;
}

.visibility-option {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; background: #f5f5f5; border: 2px solid #e0e0e0; border-radius: 12px; cursor: pointer;
}

.visibility-option.active {
    background: #000; border-color: #000; color: white;
}

.visibility-option.active svg { color: white; }
.visibility-option.active span { color: white; }

.category-options { display: flex; gap: 10px; }

.category-option {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; background: #f5f5f5; border: 2px solid #e0e0e0; border-radius: 12px; cursor: pointer;
}

.category-option.active {
    background: #000; border-color: #000; color: white;
}

.category-option.active svg { color: white; }
.category-option.active span { color: white; }

.tags-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px;
}

.tag-item {
    padding: 12px; background: #f5f5f5; border: 2px solid #e0e0e0; border-radius: 10px; text-align: center; font-size: 13px; font-weight: 600; color: #333; cursor: pointer;
}

.tag-item.active {
    background: #000; border-color: #000; color: white;
}

.selected-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; min-height: 32px;
}

.selected-tag {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: #000; color: white; border-radius: 20px; font-size: 12px; font-weight: 600;
}

.selected-tag svg { width: 14px; height: 14px; cursor: pointer; }

.btn-create-community {
    width: 100%;
    height: 50px;
    background: #000;
    color: white;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Communities List on Main Screen */
.communities-list-container {
    display: none;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    position: fixed;
    top: 128px;
    left: 0;
    right: 0;
    bottom: 60px;
    overflow-y: auto;
    background: #ffffff;
    z-index: 90;
}

#mainSearchInput::placeholder {
    color: #334155;
    font-weight: 700;
    opacity: 0.9;
}

#mainSearchInput::-webkit-input-placeholder {
    color: #334155;
    font-weight: 700;
    opacity: 0.9;
}

#mainSearchInput:-ms-input-placeholder {
    color: #334155;
    font-weight: 700;
    opacity: 0.9;
}

.communities-list-container.show {
    display: block;
}

.communities-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s;
}

.community-item:hover {
    background: #f8f9fa;
}

.community-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.community-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.community-pic svg {
    width: 24px;
    height: 24px;
    color: #9e9e9e;
}

.community-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.community-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.community-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.community-visibility {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.community-visibility svg {
    width: 18px;
    height: 18px;
    color: #757575;
}

.community-members {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #000;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.community-members svg {
    width: 14px;
    height: 14px;
    color: white;
}

.community-menu-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.community-menu-btn:hover {
    background: #f0f0f0;
}

.community-menu-btn svg {
    width: 18px;
    height: 18px;
    color: #666;
}

/* Action dropdown menu */
.community-action-dropdown {
    min-width: 170px !important;
    padding: 6px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
}

.community-action-dropdown .menu-item {
    padding: 8px 12px !important;
    gap: 10px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.2s ease !important;
}

.community-action-dropdown .menu-item span {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #334155 !important;
}

.community-action-dropdown .menu-item svg {
    width: 20px !important;
    height: 20px !important;
    color: #333333 !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
}

.community-action-dropdown .menu-item:hover {
    background: #f1f5f9 !important;
}

.community-action-dropdown .menu-item.delete-item svg {
    color: #ef4444 !important;
    fill: #ef4444 !important;
}

.community-action-dropdown .menu-item.delete-item span {
    color: #ef4444 !important;
}

/* Feature grid */
.wotox-features-header {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.wotox-features-header .back-btn-redesign {
    position: absolute;
    left: 16px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wotox-features-header .header-title {
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.wotox-features-body {
    width: 100%;
    padding: 20px 16px;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
}

.wotox-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.wotox-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-align: center;
}

.wotox-feature-block {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.2s ease;
}

.wotox-feature-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wotox-feature-circle svg {
    width: 22px;
    height: 22px;
    color: #1e293b;
}

.wotox-feature-circle img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.wotox-feature-label {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #334155;
}

/* Join community modal */
.join-community-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2500;
    display: none;
    align-items: center; justify-content: center;
    padding: 16px;
}

.join-community-overlay.active,
.join-community-overlay.show {
    display: flex !important;
}

.join-community-popup-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.join-community-header {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 16px 20px; background: #ffffff; border-bottom: 1px solid #f1f5f9;
}

.join-community-header .back-btn-redesign {
    position: absolute; left: 16px;
}

.join-community-header .header-title {
    font-size: 17px; font-weight: 700; color: #0f172a;
}

.join-community-content {
    padding: 20px; width: 100%;
}

.btn-browse-community-primary,
.btn-join-community-primary {
    width: 100%;
    height: 50px;
    margin-top: 16px;
    padding: 0 20px;
    background: #000000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.found-community-card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px;
}

.found-community-left { display: flex; align-items: center; gap: 12px; }

.found-community-avatar {
    width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: #e2e8f0; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}

.found-community-avatar img { width: 100%; height: 100%; object-fit: cover; }

.found-community-info { display: flex; flex-direction: column; gap: 2px; }

.found-community-name { font-size: 15px; font-weight: 700; color: #0f172a; }

.found-community-id { font-size: 12px; font-weight: 600; color: #64748b; }

.found-badge { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 6px; }

.found-badge.visibility { background: #e0e7ff; color: #3730a3; }

.found-badge.members { background: #f1f5f9; color: #475569; }

/* Community Portal */
.portal-tabs {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 20px; border-bottom: 1px solid #eee;
}

.portal-tab-btn {
    padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1px solid #e2e8f0; background: #f8fafc; color: #64748b; cursor: pointer; white-space: nowrap;
}

.portal-tab-btn.active {
    background: #000; color: #fff; border-color: #000;
}

.portal-member-item {
    display: flex; justify-content: space-between; align-items: center; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 10px; padding: 10px 14px;
}

.portal-member-name { font-size: 14px; font-weight: 600; color: #333; }

.portal-member-role { font-size: 11px; font-weight: bold; text-transform: uppercase; background: #e2e8f0; color: #475569; padding: 2px 6px; border-radius: 4px; }

/* Community Chat Screen Container */
#communityChatScreen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #f8f9fa;
    z-index: 2500;
    display: none;
    flex-direction: column;
    max-width: none; width: 100%; padding: 0;
}

#communityChatScreen.active {
    display: flex !important;
}

#shopScreen.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    background: #ffffff;
    z-index: 2500;
    flex-direction: column;
}

/* Discover Screen Container - Full Viewport for Mobile, Tablet, PC & Laptop */
#discoverScreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    background: #f8fafc;
    z-index: 2500;
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#discoverScreen.active {
    display: flex !important;
}

@media (min-width: 768px) {
    .bottom-nav {
        max-width: 100%;
        width: 100%;
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
    }
}

/* Voice Note Seek Slider Styles */
.voice-seek-slider {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(15, 23, 42, 0.2);
    outline: none;
    border-radius: 3px;
    height: 5px;
}
.voice-seek-slider.is-me {
    background: rgba(255, 255, 255, 0.35);
}
.voice-seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0f172a;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
}
.voice-seek-slider.is-me::-webkit-slider-thumb {
    background: #ffffff;
    border: 2px solid #0f172a;
}
.voice-seek-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0f172a;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
}
.voice-seek-slider.is-me::-moz-range-thumb {
    background: #ffffff;
    border: 2px solid #0f172a;
}

/* Real-Time Typing Indicator Dots Animation */
.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-right: 4px;
}
.typing-dots .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #2563eb;
    animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dots .dot:nth-child(1) { animation-delay: 0s; }
.typing-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* UI Micro-Interactions & App-wide Animations */
button, .btn, .nav-item, .community-item, .menu-item, .edit-btn-redesign, .copy-btn-redesign, .back-btn-redesign {
    transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

button:active, .btn:active, .nav-item:active, .edit-btn-redesign:active, .copy-btn-redesign:active, .back-btn-redesign:active {
    transform: scale(0.95) !important;
}

.community-item:active, .menu-item:active {
    transform: scale(0.98);
}

@keyframes modalPopIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(12px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.92) translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
    }
}

.share-popup-overlay {
    animation: overlayFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.share-popup {
    animation: modalPopIn 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-slide-up {
    animation: slideInUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-pulse-glow {
    animation: pulseGlow 1.8s infinite;
}

/* WoTOX Google OAuth Monochrome Button */
.btn-google-monochrome {
    width: 100%;
    margin: 0 auto;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 0 20px;
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    outline: none;
    box-sizing: border-box;
    flex-shrink: 0;
}

.btn-google-monochrome:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn-google-monochrome:active {
    transform: translateY(0);
}

/* Call Overlay Keyframes & Animations */
@keyframes callPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.18);
        opacity: 0.25;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

/* Waveform Live Recording Animation */
.wave-bar {
    animation: waveBounce 1.2s infinite ease-in-out;
}
.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.3s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.5s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.1s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.3s; }
.wave-bar:nth-child(9) { animation-delay: 0.2s; }
.wave-bar:nth-child(10) { animation-delay: 0.5s; }
.wave-bar:nth-child(11) { animation-delay: 0.4s; }
.wave-bar:nth-child(12) { animation-delay: 0.2s; }

@keyframes waveBounce {
    0%, 100% {
        transform: scaleY(0.4);
    }
    50% {
        transform: scaleY(1.2);
    }
}

/* Voice Seek Slider Styling */
.voice-seek-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #cbd5e1;
    border-radius: 4px;
    outline: none;
}

.voice-seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0f172a;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.voice-seek-slider.is-me {
    background: rgba(255, 255, 255, 0.3);
}

.voice-seek-slider.is-me::-webkit-slider-thumb {
    background: #ffffff;
}

/* Chat Message Animations */
.chat-message-card {
    animation: slideInUp 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Glassmorphism Call Overlay Dock */
.call-overlay-screen {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ============================================================ */
/* RESPONSIVE SETTINGS & PROFILE UI (Mobile, Tablet, Laptop, PC) */
/* ============================================================ */

.settings-responsive-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: calc(100vh - 65px);
    box-sizing: border-box;
    overflow-y: auto;
}

.settings-profile-summary-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.settings-profile-summary-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.settings-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
}

.settings-list-item {
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
    user-select: none;
}

.settings-list-item:hover {
    border-color: #cbd5e1;
    background: #fafafa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.settings-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.settings-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.settings-item-subtitle {
    font-size: 12.5px;
    color: #64748b;
    margin-top: 2px;
}

/* App Settings Section Cards */
.app-settings-section-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.app-settings-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #f1f5f9;
}

.setting-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
}

.setting-toggle-label {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

.setting-toggle-desc {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
    line-height: 1.4;
}

/* Toggle Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.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: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

input:checked + .slider {
    background-color: #0f172a;
}

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

.slider.round {
    border-radius: 26px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Font Size Button Group */
.font-size-btn-group {
    display: flex;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 3px;
    gap: 3px;
}

.font-btn {
    border: none;
    background: transparent;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.font-btn.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.btn-clear-cache {
    background: #f1f5f9;
    color: #0f172a;
    border: 1.5px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-clear-cache:hover {
    background: #e2e8f0;
}

/* Profile Responsive Enhancements */
.responsive-profile-container {
    max-width: 520px;
    margin: 0 auto !important;
    width: 100%;
    box-sizing: border-box;
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}

.profile-stat-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-stat-card:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.stat-number {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-top: 2px;
}

.profile-status-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 6px;
}

.status-option {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.status-option.active {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.profile-action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

/* ============================================================ */
/* MULTI-DEVICE MEDIA QUERIES (Mobile, Tablet, Laptop, PC)      */
/* ============================================================ */

/* Tablet & iPad screens (min-width: 640px) */
@media (min-width: 640px) {
    .settings-responsive-container,
    .responsive-profile-container {
        max-width: 640px;
        padding: 24px 20px;
    }

    .settings-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .profile-status-picker {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Laptop & Desktop PC (min-width: 1024px) */
@media (min-width: 1024px) {
    .settings-responsive-container,
    .responsive-profile-container {
        max-width: 800px;
        padding: 32px 24px;
    }

    .settings-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .app-settings-section-card {
        padding: 22px 26px;
    }
}

/* Ultra-Wide Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    .settings-responsive-container,
    .responsive-profile-container {
        max-width: 900px;
    }
}

/* Dark Mode Theme Classes */
body.dark-mode {
    background-color: #0b0f19;
    color: #f1f5f9;
}

body.dark-mode .settings-responsive-container,
body.dark-mode .profile-content-redesign {
    background-color: #0b0f19;
}

body.dark-mode .settings-profile-summary-card,
body.dark-mode .settings-list-item,
body.dark-mode .app-settings-section-card,
body.dark-mode .profile-card-wrapper,
body.dark-mode .info-block-redesign {
    background: #131b2e !important;
    border-color: #1e293b !important;
}

body.dark-mode .settings-item-title,
body.dark-mode .app-settings-section-title,
body.dark-mode .setting-toggle-label,
body.dark-mode .stat-number,
body.dark-mode #settingsUserName,
body.dark-mode .info-value-redesign {
    color: #f8fafc !important;
}

body.dark-mode .settings-item-subtitle,
body.dark-mode .setting-toggle-desc,
body.dark-mode .stat-label,
body.dark-mode .info-label-redesign {
    color: #94a3b8 !important;
}

body.dark-mode .status-option {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .status-option.active {
    background: #1e3a8a;
    border-color: #60a5fa;
    color: #ffffff;
}

body.dark-mode .profile-stat-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .wotox-features-header,
body.dark-mode .profile-header-redesign {
    background: #0f172a !important;
    border-color: #1e293b !important;
}

body.dark-mode .header-title {
    color: #f8fafc !important;
}

/* ==========================================================================
   Events Interface System (Automatic Responsive for Phone, Tablet, Laptop, PC)
   ========================================================================== */
.events-responsive-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    height: calc(100vh - 68px);
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.events-main-container {
    flex: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
}

.events-empty-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 56px 24px;
    text-align: center;
    margin: auto;
    max-width: 520px;
    width: 90%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.events-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.events-empty-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.events-empty-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.events-live-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    flex: 1;
    min-height: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

.events-rendered-iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    flex: 1;
    border: none;
    outline: none;
    background: #ffffff;
    display: block;
}

.add-event-bottom-bar {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    max-width: 92%;
}

.btn-add-new-event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    height: 42px;
    padding: 0 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(15,23,42,0.15);
    white-space: nowrap;
}

.btn-add-new-event:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.btn-add-new-event:active {
    transform: translateY(0);
}

.btn-ai-event-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2563eb;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    height: 42px;
    padding: 0 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
    white-space: nowrap;
}

.btn-ai-event-action:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}

.btn-ai-event-action:active {
    transform: translateY(0);
}

/* Discover Floating Plus Action Button */
.discover-plus-fab {
    position: absolute;
    bottom: 24px;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.28);
    z-index: 90;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.discover-plus-fab:hover {
    background: #1e293b;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

.discover-plus-fab:active {
    transform: scale(0.96);
}

/* Discover Upload Options Cards */
.upload-option-card:hover {
    border-color: #0f172a !important;
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06) !important;
}

.upload-option-card:active {
    transform: translateY(0);
}

/* AI Event Quick Chips */
.ai-prompt-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.ai-prompt-chip:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Visibility Option Cards */
.visibility-option-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.18s ease;
    user-select: none;
}

.visibility-option-card:hover {
    border-color: #64748b;
    background: #f8fafc;
}

.visibility-option-card.selected {
    border-color: #0f172a;
    background: #f1f5f9;
    box-shadow: 0 0 0 1.5px #0f172a;
}

/* Discover Tab Switcher */
.discover-tab-btn {
    flex: 1;
    padding: 10px 14px;
    border: none;
    background: transparent;
    font-size: 13.5px;
    font-weight: 700;
    color: #64748b;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.discover-tab-btn.active {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(15,23,42,0.15);
}

/* Discover Post Card */
.discover-post-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.discover-post-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.discover-post-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discover-post-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    border: 1.5px solid #e2e8f0;
}

.discover-post-meta {
    flex: 1;
    min-width: 0;
}

.discover-post-author-name {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discover-post-author-email {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discover-post-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-top: 2px;
}

.discover-post-desc {
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.discover-post-media-frame {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    max-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discover-post-media-frame img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.discover-post-media-frame:hover img {
    transform: scale(1.01);
}

.discover-post-actions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    gap: 8px;
}

.discover-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
    flex: 1;
    justify-content: center;
}

.discover-action-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

.discover-action-btn.active-like {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
}

.discover-action-btn.active-unlike {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

/* Lightbox Image Viewer Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(12px);
    z-index: 20000;
    display: flex;
    flex-direction: column;
}

.lightbox-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid #334155;
    color: #ffffff;
    z-index: 10;
}

.lightbox-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightbox-btn {
    background: #1e293b;
    color: #f8fafc;
    border: 1px solid #334155;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s ease;
}

.lightbox-btn:hover {
    background: #334155;
    color: #ffffff;
}

.lightbox-image-container {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    user-select: none;
}

.lightbox-image-container img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

body.dark-mode .discover-post-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .discover-post-author-name,
body.dark-mode .discover-post-title {
    color: #f8fafc;
}

body.dark-mode .discover-post-desc {
    color: #cbd5e1;
}

body.dark-mode .discover-action-btn {
    background: #0f172a;
    border-color: #334155;
    color: #94a3b8;
}

body.dark-mode .discover-action-btn:hover {
    background: #334155;
    color: #ffffff;
}

body.dark-mode .visibility-option-card {
    background: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}

body.dark-mode .visibility-option-card.selected {
    border-color: #38bdf8;
    background: #0f172a;
    box-shadow: 0 0 0 1.5px #38bdf8;
}

body.dark-mode .discover-plus-fab {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

body.dark-mode .discover-plus-fab:hover {
    background: #1d4ed8;
}

body.dark-mode .ai-prompt-chip {
    background: #1e293b;
    color: #f8fafc;
    border-color: #334155;
}

body.dark-mode .ai-prompt-chip:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.btn-event-manage-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    height: 42px;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-event-manage-delete:hover {
    background: #fecaca;
}

/* Dark Mode Overrides for Events Screen */
body.dark-mode .events-responsive-wrapper {
    background: #0b0f19;
}

body.dark-mode .events-empty-card {
    background: #131b2e !important;
    border-color: #1e293b !important;
}

body.dark-mode .events-empty-icon {
    background: #1e293b;
    color: #f8fafc;
}

body.dark-mode .events-empty-title {
    color: #f8fafc !important;
}

body.dark-mode .events-empty-desc {
    color: #94a3b8 !important;
}

body.dark-mode .add-event-bottom-bar {
    background: rgba(15, 23, 42, 0.95) !important;
    border-color: #1e293b !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

body.dark-mode .btn-add-new-event {
    background: #2563eb;
    color: #ffffff;
}

body.dark-mode .btn-add-new-event:hover {
    background: #1d4ed8;
}

@keyframes pulseEventAlert {
    0% {
        transform: scale(0.92);
        opacity: 0.85;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1.15);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.92);
        opacity: 0.85;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* ============================================================================
   Upcoming Event Card & Countdown Styles
   ============================================================================ */

.events-upcoming-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    max-width: 580px;
    margin: 24px auto;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.events-upcoming-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.events-upcoming-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    animation: pulseEventAlert 1.5s infinite;
}

.events-upcoming-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.events-upcoming-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px 0;
    max-width: 440px;
    line-height: 1.5;
}

.events-countdown-box {
    background: #0f172a;
    color: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    width: 100%;
    max-width: 440px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.countdown-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 12px;
}

.countdown-digits-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cd-unit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    min-width: 60px;
    padding: 8px 4px;
}

.cd-val {
    font-size: 26px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #ffffff;
    line-height: 1;
}

.cd-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-top: 4px;
}

.cd-sep {
    font-size: 24px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 14px;
}

.events-schedule-info-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 440px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    color: #475569;
    margin-bottom: 20px;
    text-align: left;
}

.schedule-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-meta-item svg {
    color: #2563eb;
    flex-shrink: 0;
}

.schedule-meta-item strong {
    color: #0f172a;
}

.upcoming-admin-controls {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 440px;
}

.btn-start-now-immediate {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-start-now-immediate:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-cancel-scheduled-event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel-scheduled-event:hover {
    background: #fee2e2;
}

/* ============================================================================
   Event Launch & Scheduling Configuration Modal
   ============================================================================ */

.event-schedule-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.event-schedule-modal-card {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: modalPopIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) ease-out forwards;
}

.modal-schedule-header {
    padding: 20px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.modal-schedule-title-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.modal-schedule-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-schedule-heading {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.modal-schedule-subheading {
    font-size: 13px;
    color: #64748b;
    margin: 2px 0 0 0;
}

.modal-schedule-body {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-form-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.schedule-sublabel {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
    display: block;
}

.schedule-form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.schedule-form-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.schedule-segmented-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
}

.segment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.segment-option.active {
    background: #ffffff;
    color: #2563eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.schedule-duration-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.duration-pill {
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.duration-pill:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.duration-pill.active {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb;
}

.schedule-summary-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-box-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.summary-label {
    color: #64748b;
}

.summary-value {
    font-weight: 700;
    color: #0f172a;
}

.modal-schedule-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-schedule-cancel {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-schedule-cancel:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.btn-schedule-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    background: #2563eb;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: all 0.2s;
}

.btn-schedule-submit:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

body.dark-mode .events-upcoming-card {
    background: #1e293b !important;
    border-color: #334155 !important;
}

body.dark-mode .events-upcoming-title {
    color: #f8fafc !important;
}

body.dark-mode .events-schedule-info-row {
    background: #0f172a !important;
    border-color: #334155 !important;
    color: #94a3b8 !important;
}

body.dark-mode .schedule-meta-item strong {
    color: #f8fafc !important;
}

body.dark-mode .event-schedule-modal-card {
    background: #1e293b !important;
    border-color: #334155 !important;
}

body.dark-mode .modal-schedule-header,
body.dark-mode .modal-schedule-footer {
    background: #0f172a !important;
    border-color: #334155 !important;
}

body.dark-mode .modal-schedule-heading,
body.dark-mode .schedule-form-label,
body.dark-mode .summary-value {
    color: #f8fafc !important;
}

body.dark-mode .schedule-form-input {
    background: #0f172a !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

body.dark-mode .schedule-summary-box {
    background: #0f172a !important;
    border-color: #334155 !important;
}

/* ============================================================================
   Shop Screen & Real Quality Proxy Card Styles
   ============================================================================ */

.shop-top-bar {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: #ffffff;
    border-bottom: 1.5px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
}

.shop-back-btn {
    background: #f1f5f9;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    left: 16px;
    color: #0f172a;
    transition: background 0.2s, transform 0.15s;
}

.shop-back-btn:hover {
    background: #e2e8f0;
    transform: scale(1.04);
}

.shop-top-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.shop-content-scrollable {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    padding: 24px 16px 40px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Real Card Styling */
.proxy-real-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 0 1px 1px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    transition: transform 0.2s, box-shadow 0.2s;
}

.proxy-real-card:hover {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 1px 1px rgba(0, 0, 0, 0.06);
}

.proxy-card-header-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6px;
    width: 100%;
}

.proxy-card-title {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.proxy-card-duration {
    font-size: 14.5px;
    font-weight: 700;
    color: #64748b;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* Real Key Icon */
.proxy-key-icon-wrapper {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.proxy-real-card:hover .proxy-key-icon-wrapper {
    transform: scale(1.05);
}

.proxy-real-key-icon {
    display: block;
    fill: #000000 !important;
    color: #000000 !important;
}

/* Price Display */
.proxy-price-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.proxy-currency {
    font-size: 16px;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.04em;
}

.proxy-price-value {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* Subscribe Button */
.proxy-subscribe-action-block {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.proxy-subscribe-btn {
    width: 100%;
    padding: 14px 20px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.proxy-subscribe-btn:hover {
    background: #1e293b;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35);
}

.proxy-subscribe-btn.subscribed {
    background: #10b981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.proxy-subscribe-btn.subscribed:hover {
    background: #059669;
}

.proxy-active-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
}

.proxy-status-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

/* Privileges Section */
.proxy-privileges-block {
    width: 100%;
    border-top: 1.5px solid #f1f5f9;
    padding-top: 20px;
    text-align: left;
}

.proxy-privileges-heading {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proxy-privileges-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proxy-privilege-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #334155;
    line-height: 1.45;
}

.privilege-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.privilege-check-icon svg {
    display: block;
}

.privilege-text {
    font-weight: 600;
}

/* Proxy Subscription Modal */
.proxy-sub-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.proxy-sub-modal-card {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1.5px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalPopIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) ease-out forwards;
}

.proxy-sub-modal-header {
    padding: 20px 24px;
    background: #f8fafc;
    border-bottom: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proxy-sub-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.proxy-sub-modal-close {
    background: #e2e8f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #475569;
    transition: background 0.2s;
}

.proxy-sub-modal-close:hover {
    background: #cbd5e1;
    color: #0f172a;
}

.proxy-sub-modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.proxy-sub-summary-box {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-method-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pay-opt-pill {
    padding: 12px 10px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.pay-opt-pill:hover {
    border-color: #0f172a;
}

.pay-opt-pill.active {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
}

/* Dark Mode Adaptations */
body.dark-mode .shop-top-bar {
    background: #0f172a !important;
    border-color: #334155 !important;
}

body.dark-mode .shop-top-title {
    color: #f8fafc !important;
}

body.dark-mode .shop-back-btn {
    background: #1e293b !important;
    color: #f8fafc !important;
}

body.dark-mode .proxy-real-card {
    background: #1e293b !important;
    border-color: #334155 !important;
}

body.dark-mode .proxy-card-title,
body.dark-mode .proxy-price-value,
body.dark-mode .proxy-privileges-heading {
    color: #f8fafc !important;
}

body.dark-mode .proxy-card-duration,
body.dark-mode .proxy-currency {
    color: #94a3b8 !important;
}

body.dark-mode .proxy-key-icon-wrapper {
    background: #0f172a !important;
    border-color: #334155 !important;
}

body.dark-mode .proxy-real-key-icon {
    fill: #f8fafc !important;
    color: #f8fafc !important;
}

body.dark-mode .proxy-subscribe-btn {
    background: #f8fafc !important;
    color: #0f172a !important;
}

body.dark-mode .proxy-subscribe-btn:hover {
    background: #ffffff !important;
}

body.dark-mode .proxy-privileges-block {
    border-color: #334155 !important;
}

body.dark-mode .proxy-privilege-item {
    color: #cbd5e1 !important;
}

body.dark-mode .privilege-check-icon {
    background: #334155 !important;
    color: #f8fafc !important;
}

body.dark-mode .proxy-sub-modal-card {
    background: #1e293b !important;
    border-color: #334155 !important;
}

body.dark-mode .proxy-sub-modal-header {
    background: #0f172a !important;
    border-color: #334155 !important;
}

body.dark-mode .proxy-sub-modal-title {
    color: #f8fafc !important;
}

body.dark-mode .proxy-sub-summary-box {
    background: #0f172a !important;
    border-color: #334155 !important;
}

body.dark-mode .pay-opt-pill {
    background: #0f172a !important;
    border-color: #334155 !important;
    color: #cbd5e1 !important;
}

/* ==========================================================================
   PRO CHAT INTERFACE & REAL-TIME INTERACTION ENGINE
   ========================================================================== */

/* Chat Messages Layout & Cards */
.chat-message-card {
    position: relative;
    transition: transform 0.15s ease;
    margin-bottom: 2px;
}

.chat-message-card:hover .chat-msg-hover-actions {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

.chat-msg-hover-actions {
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(4px) scale(0.95);
    z-index: 25;
}

/* Chat Message Bubbles */
.chat-msg-bubble {
    position: relative;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.chat-msg-bubble:active {
    transform: scale(0.99);
}

.my-message .chat-msg-bubble {
    background: #0f172a !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14) !important;
}

.other-message .chat-msg-bubble {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

/* Quick Reaction Floating Toolbar */
.quick-react-bar {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 3px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.quick-react-emoji-btn {
    background: none;
    border: none;
    font-size: 16px;
    padding: 3px 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.15s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quick-react-emoji-btn:hover {
    transform: scale(1.35);
    background-color: #f1f5f9;
}

.quick-react-emoji-btn:active {
    transform: scale(0.95);
}

/* Professional Voice Note Waveform Visualizer */
.pro-voice-waveform {
    display: flex;
    align-items: center;
    gap: 2.5px;
    height: 32px;
    cursor: pointer;
    padding: 0 2px;
    user-select: none;
}

.pro-wave-bar {
    width: 3px;
    min-height: 4px;
    border-radius: 3px;
    background: #cbd5e1;
    transition: background-color 0.1s ease, transform 0.1s ease;
}

.my-message .pro-wave-bar {
    background: rgba(255, 255, 255, 0.35);
}

.my-message .pro-wave-bar.played {
    background: #38bdf8 !important;
}

.other-message .pro-wave-bar.played {
    background: #2563eb !important;
}

/* Live Recording Equalizer Animation */
.live-rec-equalizer {
    display: inline-flex;
    align-items: center;
    gap: 2.5px;
    height: 16px;
}

.live-rec-equalizer span {
    width: 2.5px;
    height: 12px;
    background: #2563eb;
    border-radius: 2px;
    animation: recEqualizerPulse 0.8s ease-in-out infinite alternate;
}

.live-rec-equalizer span:nth-child(1) { animation-delay: 0.0s; height: 6px; }
.live-rec-equalizer span:nth-child(2) { animation-delay: 0.2s; height: 14px; }
.live-rec-equalizer span:nth-child(3) { animation-delay: 0.4s; height: 10px; }
.live-rec-equalizer span:nth-child(4) { animation-delay: 0.1s; height: 16px; }
.live-rec-equalizer span:nth-child(5) { animation-delay: 0.3s; height: 8px; }

@keyframes recEqualizerPulse {
    0% { transform: scaleY(0.3); opacity: 0.6; }
    100% { transform: scaleY(1.2); opacity: 1; }
}

/* Typing Bouncing Dots Animation */
.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.typing-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
    animation: typingDotBounce 1.2s infinite ease-in-out both;
}

.typing-dots .dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dots .dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dots .dot:nth-child(3) { animation-delay: 0s; }

@keyframes typingDotBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
}

/* In-Chat Status Floating Cards ("username is typing...", "username is recording audio...") */
.chat-status-floating-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    animation: slideInChatStatus 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.chat-status-floating-banner.typing-status {
    background: rgba(239, 246, 255, 0.95);
    border: 1.5px solid #bfdbfe;
    color: #1d4ed8;
}

.chat-status-floating-banner.recording-status {
    background: rgba(254, 242, 242, 0.95);
    border: 1.5px solid #fecaca;
    color: #dc2626;
}

@keyframes slideInChatStatus {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chat Action Buttons */
.chat-action-btn-pill {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 3px 9px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.chat-action-btn-pill:hover {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.chat-action-btn-pill:active {
    transform: translateY(0);
}

.chat-action-btn-pill.active-like {
    background: #fee2e2 !important;
    border-color: #fca5a5 !important;
    color: #dc2626 !important;
}

/* Chat Input Bar Send & Voice Buttons Animation */
#chatSendBtn, #chatVoiceBtn {
    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

#chatSendBtn:hover, #chatVoiceBtn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

#chatSendBtn:active, #chatVoiceBtn:active {
    transform: scale(0.94);
}

/* Dark Mode Overrides for Chat */
body.dark-mode #communityChatScreen {
    background: #0b0f19 !important;
}

body.dark-mode .community-chat-header,
body.dark-mode .chat-bottom-bar {
    background: #0f172a !important;
    border-color: #1e293b !important;
}

body.dark-mode #chatMessagesContainer {
    background: #0b0f19 !important;
}

body.dark-mode #chatCommunityName {
    color: #f8fafc !important;
}

body.dark-mode #chatMessageInput {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

body.dark-mode .other-message .chat-msg-bubble {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

body.dark-mode .quick-react-bar {
    background: #1e293b !important;
    border-color: #334155 !important;
}

body.dark-mode .chat-action-btn-pill {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #cbd5e1 !important;
}

body.dark-mode .chat-status-floating-banner.typing-status {
    background: rgba(30, 41, 59, 0.95) !important;
    border-color: #3b82f6 !important;
    color: #60a5fa !important;
}

body.dark-mode .chat-status-floating-banner.recording-status {
    background: rgba(30, 41, 59, 0.95) !important;
    border-color: #ef4444 !important;
    color: #f87171 !important;
}

/* ========================================== */
/* REAL-TIME PRESENCE INDICATOR STYLES */
/* ========================================== */
.user-avatar-presence-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.presence-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    z-index: 5;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.presence-dot.online {
    background-color: #10b981;
}

.presence-dot.offline {
    background-color: #cbd5e1;
}

.presence-dot-pulse {
    animation: presencePulse 2.4s infinite ease-in-out;
}

@keyframes presencePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.65), 0 1px 3px rgba(0,0,0,0.15);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0), 0 1px 3px rgba(0,0,0,0.15);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0), 0 1px 3px rgba(0,0,0,0.15);
    }
}

/* ========================================== */
/* IN-APP PUSH NOTIFICATIONS */
/* ========================================== */
#wotoxPushNotificationContainer {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 480px;
    z-index: 100000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wotox-push-banner {
    pointer-events: auto;
    background: #0f172a;
    color: #ffffff;
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28), 0 2px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: slideDownToast 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.wotox-push-banner:hover {
    transform: translateY(-2px);
}

.wotox-push-banner.fade-out {
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
}

@keyframes slideDownToast {
    from {
        opacity: 0;
        transform: translateY(-24px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========================================== */
/* MODERN APP ANIMATIONS & TRANSITIONS */
/* ========================================== */
.wotox-page-enter {
    animation: wotoxPageFadeIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wotoxPageFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-msg-bubble {
    animation: msgBubbleIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes msgBubbleIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(4px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Professional button micro-interactions */
button:not(:disabled):active,
.clickable-card:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
}

/* ========================================== */
/* FRIEND REQUESTS & TABS */
/* ========================================== */
.friend-req-tab-btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #64748b;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.friend-req-tab-btn.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.friend-req-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.2s ease;
}

.friend-req-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* ========================================== */
/* COMMUNITY INTERFACE HUB STYLES */
/* ========================================== */
.community-hub-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

.community-hub-tab-btn {
    padding: 9px 14px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.community-hub-tab-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.community-channel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.18s ease;
}

.community-channel-row:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(2px);
}

/* ============================================================
   WOTOX PLUS & NEW VERIFICATION / CURRENCY / OFFLINE STYLES
   ============================================================ */

/* OTP 6-Digit Blocks */
.otp-six-box-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 12px 0;
}

.otp-six-digit-input {
    width: 46px;
    height: 52px;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.otp-six-digit-input:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.otp-six-digit-input.filled {
    border-color: #0f172a;
    background: #f8fafc;
}

/* Gender Selector */
.gender-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.gender-select-card {
    padding: 12px 8px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.18s ease;
}

.gender-select-card:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.gender-select-card.active {
    border-color: #0f172a;
    background: #f1f5f9;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.gender-select-card.active .gender-icon-svg {
    color: #0f172a;
}

/* Social Media Grid */
.social-media-pick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 8px;
}

.social-pick-card {
    padding: 12px 8px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.18s ease;
    text-align: center;
}

.social-pick-card:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.social-pick-card.active {
    border-color: #0f172a;
    background: #f1f5f9;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.social-link-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    animation: fadeInSlide 0.25s ease-out;
}

/* WOT-FLUX Currency Pill */
.wot-flux-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    padding: 4px 10px 4px 8px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.wot-flux-pill:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.wot-flux-plus-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

/* Offline Banner */
#wotoxOfflineBanner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: #ffffff;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 99999;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    animation: slideDownBanner 0.3s ease-out forwards;
}

@keyframes slideDownBanner {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* WoTOX Plus UI */
.wotox-plus-hero-card {
    background: #0f172a;
    color: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,23,42,0.18);
}

.wotox-plus-privilege-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

/* Verified Green Card */
.verified-green-card {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 16px;
    padding: 20px;
    color: #166534;
}

.verified-green-title {
    font-size: 18px;
    font-weight: 800;
    color: #15803d;
}

/* OTP 6-Box Input */
.otp-six-box-container {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.otp-digit-input {
    width: calc((100% - 40px) / 6);
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    outline: none;
    transition: all 0.18s ease;
    box-sizing: border-box;
}

.otp-digit-input:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.12);
}

/* Gender Selection Pills */
.gender-pill-btn {
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gender-pill-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

/* Social Media Usage Toggle */
.social-usage-btn {
    flex: 1;
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-usage-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

/* Social Platform Icon Cards */
.social-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.18s ease;
}

.social-icon-card:hover {
    border-color: #94a3b8;
}

.social-icon-card.selected {
    border-color: #0f172a;
    background: #f1f5f9;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.social-brand-label {
    font-size: 11px;
    font-weight: 700;
    color: #334155;
    text-align: center;
}
