* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Centered Header Section */
.header-section {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    padding: 40px 0 32px;
    position: relative;
    z-index: 1;
}

/* Profile Section - Centered */
.profile-section {
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    position: relative;
}

.avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    z-index: -1;
    opacity: 0.4;
    filter: blur(15px);
}

.avatar-inner {
    font-size: 48px;
}

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

.name {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1rem;
    color: #FFD700;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Main Wrapper - Two Column Layout */
.main-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 1;
    align-items: flex-start;
    justify-content: center;
}

/* Left Panel - Action Panel */
.left-panel {
    max-width: 480px;
    width: 100%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Right Panel - Assistant Workspace */
.right-panel {
    flex: 1;
    max-width: 480px;
    position: sticky;
    top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.right-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Panel Content - Aligned with Left Cards */
.panel-content {
    display: none;
    background: #141414;
    border: 1px solid #FFD700;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.panel-content.active {
    display: block;
    animation: panelSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes panelSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Panel Header - Compact */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #222;
    background: linear-gradient(135deg, #141414 0%, #1a1a0a 100%);
}

.panel-header h3 {
    font-size: 1rem;
    color: #FFD700;
    font-weight: 600;
}

.close-panel {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #FFD700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-panel:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg) scale(1.1);
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.link-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    animation: slideUp 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    background: #1a1a1a;
    border-color: #FFD700;
    transform: translateY(-2px);
}

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

.bio-card-static { animation-delay: 0.1s; }
.instagram-card { animation-delay: 0.15s; }
.tools-card { animation-delay: 0.2s; }
.chat-card { animation-delay: 0.25s; }
.download-card { animation-delay: 0.3s; }

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

.card-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
    font-weight: 600;
}

.card-subtitle {
    color: #666;
    font-size: 0.85rem;
}

.card-arrow {
    font-size: 18px;
    color: #FFD700;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.link-card:hover .card-arrow {
    transform: translateX(4px);
}

.coming-soon-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Tools Card - Now Interactive */
.tools-card {
    cursor: pointer;
}

.tools-card:hover {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* Bio Card - Static Display */
.bio-card-static {
    cursor: default;
    border-color: #FFD700;
    background: linear-gradient(135deg, #141414 0%, #1a1a0a 100%);
    flex-direction: column;
    align-items: stretch;
}

.bio-card-static:hover {
    transform: none;
    border-color: #FFD700;
}

.bio-content-static {
    width: 100%;
}

.bio-content-static h3 {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
}

.bio-content-static p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.bio-content-static p:last-child {
    margin-bottom: 0;
}

/* Bio Tagline Row with Arrow */
.bio-tagline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    gap: 12px;
}

.bio-tagline {
    color: #FFD700 !important;
    font-weight: 600;
    margin: 0 !important;
    flex: 1;
}

.bio-arrow-btn {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.bio-arrow-btn:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateX(3px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.bio-arrow-btn .arrow-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.bio-arrow-btn:hover .arrow-icon {
    transform: translateX(2px);
}

/* Email Capture Form */
.email-capture-form {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.email-capture-form.active {
    max-height: 100px;
    opacity: 1;
    margin-top: 16px;
}

.email-input-wrapper {
    display: flex;
    gap: 10px;
}

.email-input-wrapper input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #333;
    background: #1a1a1a;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.email-input-wrapper input::placeholder {
    color: #666;
}

.email-input-wrapper input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.email-input-wrapper input.error {
    border-color: #ff4444;
}

.email-input-wrapper button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-input-wrapper button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.email-input-wrapper button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.email-error {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 8px;
    display: none;
}

.email-error.visible {
    display: block;
}

/* Instagram Card */
.instagram-card {
    text-decoration: none;
}

.instagram-card:hover {
    border-color: #E1306C;
}

.instagram-card:hover .card-arrow {
    color: #E1306C;
}

/* Chat Card */
.chat-card:hover {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* Download Card */
.download-card {
    text-decoration: none;
    cursor: pointer;
}

.download-card:hover {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* Tools Grid */
.tools-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
}

.tool-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.tool-card:hover {
    border-color: #333;
    background: #1f1f1f;
}

.tool-icon {
    font-size: 32px;
}

.tool-content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tool-content p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.4;
}

.tool-card .coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
}

/* Chat Panel (Desktop) */
.chat-panel .chat-messages {
    height: 380px;
    overflow-y: auto;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #0f0f0f;
}

.chat-panel .chat-input-container {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    background: #141414;
    border-top: 1px solid #222;
}

.chat-panel .chat-loading {
    padding: 0 20px 16px;
    background: #0f0f0f;
}

/* Inline Chat Container (Mobile) */
.chat-inline-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #141414;
    border: 1px solid #222;
    border-radius: 12px;
    margin-top: -8px;
}

.chat-inline-container.active {
    max-height: 550px;
    opacity: 1;
    margin-top: 0;
}

.chat-inline-container .chat-header {
    padding: 16px 20px;
    border-bottom: 1px solid #222;
}

.chat-inline-container .chat-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-inline-container .chat-header h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.chat-inline-container .close-chat {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #FFD700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-inline-container .close-chat:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

.chat-inline-container .chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #0f0f0f;
}

.chat-inline-container .chat-input-container {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: #141414;
    border-top: 1px solid #222;
}

.chat-inline-container .chat-loading {
    padding: 0 16px 16px;
    background: #0f0f0f;
}

/* Tools Inline Panel (Mobile) */
.tools-inline-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -8px;
}

.tools-inline-panel.active {
    max-height: 400px;
    opacity: 1;
    margin-top: 0;
}

.tools-inline-panel .tools-grid {
    background: #141414;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 16px;
}

/* Chat Messages Scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Message Styles */
.message {
    display: flex;
    animation: messageFloat 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.message-content {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 20px;
    word-wrap: break-word;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.message-content:hover {
    transform: translateY(-2px);
}

.bot-message .message-content {
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 20px 20px 20px 4px;
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-radius: 20px 20px 4px 20px;
    font-weight: 500;
}

.message-content p {
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Chat Input */
#chatInput,
#chatInputInline {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #333;
    background: #1a1a1a;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    color: white;
    transition: all 0.3s ease;
}

#chatInput::placeholder,
#chatInputInline::placeholder {
    color: #666;
}

#chatInput:focus,
#chatInputInline:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

#sendBtn,
#sendBtnInline {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

#sendBtn:hover,
#sendBtnInline:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

#sendBtn:active,
#sendBtnInline:active {
    transform: scale(0.95);
}

.send-icon {
    font-size: 18px;
    font-weight: bold;
}

/* Chat Loading */
.chat-loading {
    display: none;
    justify-content: flex-start;
}

.chat-loading.active {
    display: flex;
}

.typing-indicator {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px 20px 20px 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Chat Images - Inline Preview */
.chat-image-container {
    margin: 10px 0;
    display: inline-block;
    position: relative;
}

.chat-image {
    max-width: 100%;
    max-height: 250px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #333;
    /* Download prevention */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: auto;
}

.chat-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.chat-image.touch-active {
    transform: scale(0.98);
    opacity: 0.9;
}

/* Full-Screen Image Viewer */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

#lightboxImage {
    max-width: 96vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    animation: lightboxZoom 0.3s ease;
    /* Download prevention */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: auto;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90vw;
    text-align: left;
}

.toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-message {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: #444;
    font-size: 0.85rem;
    animation: slideUp 0.6s ease-out 0.3s backwards;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        align-items: flex-start;
    }

    .header-section {
        padding: 20px 0 24px;
    }

    .main-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .left-panel {
        max-width: 100%;
    }

    /* Hide desktop right panel on mobile */
    .right-panel {
        display: none !important;
    }

    .chat-inline-container,
    .tools-inline-panel {
        display: block;
    }
}

@media (min-width: 901px) {
    /* Hide mobile inline panels on desktop */
    .chat-inline-container,
    .tools-inline-panel {
        display: none !important;
    }
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .header-section {
        padding: 15px 0 20px;
    }

    .main-wrapper {
        gap: 15px;
    }

    .name {
        font-size: 1.75rem;
    }

    .avatar {
        width: 80px;
        height: 80px;
    }

    .avatar-inner {
        font-size: 40px;
    }

    .link-card {
        padding: 16px 20px;
    }

    .card-icon {
        font-size: 24px;
    }

    .card-content h3 {
        font-size: 0.95rem;
    }

    .chat-inline-container .chat-messages {
        height: 280px;
    }

    .message-content {
        max-width: 90%;
        padding: 12px 16px;
    }

    .tool-card {
        padding: 16px;
    }

    .tool-icon {
        font-size: 28px;
    }

    .tool-content h4 {
        font-size: 1rem;
    }

    .lightbox-close {
        top: -40px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .bio-tagline-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .bio-arrow-btn {
        align-self: flex-end;
    }

    .email-input-wrapper {
        flex-direction: column;
    }

    .email-input-wrapper button {
        width: 100%;
    }

    .toast {
        left: 15px;
        right: 15px;
        transform: translateX(0) translateY(100px);
        width: auto;
    }

    .toast.active {
        transform: translateX(0) translateY(0);
    }
}

/* Prevent image save */
img {
    -webkit-touch-callout: none;
}

.chat-image,
#lightboxImage {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
