/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0b0f19;
    --card-bg: rgba(17, 24, 39, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --primary: #6366f1; /* Indigo */
    --primary-hover: #4f46e5;
    --accent: #a855f7; /* Purple */
    --accent-hover: #9333ea;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --glow-color: rgba(99, 102, 241, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Blobs */
.bg-gradient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.blob-1 {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.blob-2 {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Typography elements */
h1, h2, h3, h4, .brand h1, .auth-logo h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

span strong {
    color: #fff;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.45);
    filter: brightness(1.1);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #d946ef 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(168, 85, 247, 0.45);
    filter: brightness(1.1);
}

.btn-success {
    background-color: var(--success);
    color: white;
}
.btn-success:hover {
    background-color: #059669;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-block {
    width: 100%;
}

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

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

.form-control, input[type="email"], input[type="password"], input[type="number"], select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.input-with-icon input {
    padding-left: 42px;
}

.form-control:focus, input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 12px var(--glow-color);
}

/* AUTH SCREEN */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-logo h2 {
    font-size: 2rem;
    color: white;
}
.auth-logo h2 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.auth-tabs {
    display: flex;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.auth-tab-btn.active {
    background-color: rgba(255, 255, 255, 0.06);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.trial-gift-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #a7f3d0;
    text-align: left;
}

.trial-gift-info i {
    font-size: 1.2rem;
    color: var(--success);
}

.alert {
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: left;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* APP SCREEN - MAIN LAYOUT */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

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

.brand h1 {
    font-size: 1.5rem;
    color: white;
}
.brand h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-balance-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 8px;
}

.balance-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.balance-amount {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
}

.avatar-icon {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.user-info-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.user-email {
    font-size: 0.9rem;
    font-weight: 600;
}

.vip-badge-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.05em;
    animation: gold-glow 2s infinite alternate;
}

@keyframes gold-glow {
    0% {
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    }
    100% {
        box-shadow: 0 2px 15px rgba(245, 158, 11, 0.7);
    }
}

.vip-expire-text {
    font-size: 0.72rem;
    color: var(--warning);
    font-weight: 500;
    margin-top: 1px;
}

.btn-logout {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-logout:hover {
    color: var(--danger);
    background-color: rgba(239, 68, 68, 0.08);
}

/* Main Workspace */
.app-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    flex-grow: 1;
}

/* Left Panel */
.workspace-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Drag-Drop Zone */
.upload-zone {
    background: var(--card-bg);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.upload-zone:hover {
    border-color: var(--primary);
    background-color: rgba(99, 102, 241, 0.03);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.08);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.upload-prompt h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.upload-prompt p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.file-formats {
    font-size: 0.75rem;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.hidden-file-input {
    display: none;
}

/* File Details Card */
.file-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.file-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.file-type-icon {
    font-size: 2.2rem;
    color: var(--primary);
}

.file-meta {
    flex-grow: 1;
}

.file-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    word-break: break-all;
}

.file-size {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-remove-file {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.btn-remove-file:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.price-estimation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.est-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.est-label {
    color: var(--text-muted);
}

.est-val {
    font-weight: 500;
}

.total-cost {
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
}

.total-cost .est-label {
    font-weight: 600;
    color: var(--text-main);
}

.highlight {
    font-weight: 700;
    color: #fff;
}

.highlight.text-success {
    color: var(--success);
}
.highlight.text-warning {
    color: var(--warning);
}

/* Loading / Progress State */
.progress-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.spinner-container {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 20px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    background-color: var(--accent);
    animation-delay: -1.0s;
}

@keyframes sk-bounce {
    0%, 100% { 
        transform: scale(0.0);
    } 50% { 
        transform: scale(1.0);
    }
}

.progress-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.progress-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Results Display */
.results-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-header h3 {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.transcription-editor {
    width: 100%;
    height: 400px;
    background-color: rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
}

.transcription-editor:focus {
    outline: none;
    border-color: var(--primary);
}

/* Right Panel: AI Tools */
.workspace-right {
    display: flex;
    flex-direction: column;
}

.ai-tools-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tools-header {
    margin-bottom: 20px;
}

.tools-header h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.tools-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tools-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.tool-tab-btn {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tool-tab-btn.active {
    background-color: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    color: white;
}

.tool-section {
    margin-bottom: 20px;
}

.tool-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* AI Tool Result View */
.tool-result-box {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.result-header .actions {
    display: flex;
    gap: 6px;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    font-size: 0.95rem;
}
.btn-icon:hover {
    background-color: rgba(255,255,255,0.05);
    color: white;
}

.tool-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--accent);
    background-color: rgba(168, 85, 247, 0.05);
    border: 1px dashed rgba(168, 85, 247, 0.2);
    border-radius: 8px;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ai-result-editor {
    width: 100%;
    height: 320px;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: none;
}

/* MODAL OVERLAY */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal-card {
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.btn-close-modal:hover {
    background-color: rgba(255,255,255,0.05);
    color: white;
}

.modal-body {
    padding: 24px;
}

.modal-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Amount Grid */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.amount-btn {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 14px 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.amount-btn.active {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
    color: #10b981;
}

/* Deposit QR Layout */
.deposit-qr-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    margin-bottom: 20px;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 16px;
    border-radius: 12px;
}

#vietqr-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.qr-scan-instruction {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.detail-lbl {
    color: var(--text-muted);
}

.detail-val {
    font-weight: 600;
}

.val-with-copy {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy-small {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
}
.btn-copy-small:hover {
    background-color: rgba(99,102,241,0.1);
}

.highlight-row {
    background-color: rgba(245, 158, 11, 0.05);
    border: 1px dashed rgba(245, 158, 11, 0.2);
    border-radius: 6px;
    padding: 8px 10px;
    border-bottom: none;
}

.payment-warning {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    color: #fca5a5;
    background-color: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 10px;
    border-radius: 6px;
    line-height: 1.4;
    margin-top: 6px;
}

.payment-warning i {
    font-size: 1.1rem;
    color: var(--danger);
    margin-top: 1px;
}

/* Sandbox testing box */
.sandbox-test-box {
    background-color: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.sandbox-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--warning);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.sandbox-test-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.qr-loading-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 500;
    padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .app-main {
        grid-template-columns: 1fr;
    }
    .deposit-qr-layout {
        grid-template-columns: 1fr;
    }
    .qr-container {
        max-width: 260px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .app-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .user-profile {
        border-left: none;
        padding-left: 0;
    }
    .amount-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Theme Toggle Button Styles */
.btn-theme-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-theme-toggle:hover {
    color: var(--warning);
    background-color: rgba(245, 158, 11, 0.08);
}

/* Light Theme Variables & Class Overrides */
body.light-theme {
    --bg-dark: #f8fafc; /* Slate 50 */
    --card-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(15, 23, 42, 0.08); /* Slate 900 8% */
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #64748b; /* Slate 500 */
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --accent: #9333ea;
    --accent-hover: #7e22ce;
    --glow-color: rgba(79, 70, 229, 0.08);
}

body.light-theme h1, 
body.light-theme h2, 
body.light-theme h3, 
body.light-theme h4, 
body.light-theme .brand h1, 
body.light-theme .auth-logo h2,
body.light-theme span strong,
body.light-theme .balance-amount,
body.light-theme .file-name,
body.light-theme .highlight,
body.light-theme .detail-val,
body.light-theme .user-email {
    color: #0f172a;
}

body.light-theme .bg-gradient-glow {
    opacity: 0.15;
}

body.light-theme .auth-card {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

body.light-theme .auth-tabs {
    background-color: rgba(15, 23, 42, 0.03);
}

body.light-theme .auth-tab-btn.active {
    background-color: white;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

body.light-theme .form-control,
body.light-theme input[type="email"],
body.light-theme input[type="password"],
body.light-theme input[type="number"],
body.light-theme select {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.15);
}

body.light-theme .form-control:focus,
body.light-theme input:focus,
body.light-theme select:focus {
    background-color: white;
}

body.light-theme .user-balance-card,
body.light-theme .price-estimation {
    background-color: rgba(15, 23, 42, 0.02);
}

body.light-theme .amount-btn {
    background-color: rgba(15, 23, 42, 0.02);
    color: #0f172a;
}

body.light-theme .amount-btn:hover {
    background-color: rgba(15, 23, 42, 0.06);
}

body.light-theme .amount-btn.active {
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    border-color: var(--success);
}

body.light-theme .transcription-editor,
body.light-theme .ai-result-editor {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

body.light-theme .transcription-editor:focus {
    border-color: var(--primary);
}

body.light-theme .modal-card {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

body.light-theme .sandbox-test-box {
    background-color: rgba(245, 158, 11, 0.08);
}

body.light-theme .qr-container {
    border: 1px solid rgba(15, 23, 42, 0.1);
}

body.light-theme .detail-row {
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

body.light-theme .highlight-row {
    background-color: rgba(245, 158, 11, 0.08);
}

/* ============================
   MICROPHONE RECORDING
   ============================ */
.record-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 16px 0;
}
.record-divider::before, .record-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.record-area {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.record-area.recording {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.03);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

.btn-record {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
}

.btn-record:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(239, 68, 68, 0.5);
}

.btn-record.is-recording {
    animation: record-pulse 1.5s infinite;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

@keyframes record-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.record-timer {
    font-family: 'Outfit', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
    letter-spacing: 0.05em;
}

.record-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.recorded-audio-preview {
    width: 100%;
    margin-top: 8px;
}

.recorded-audio-preview audio {
    width: 100%;
    height: 36px;
    filter: invert(0);
    border-radius: 8px;
}

body.light-theme .recorded-audio-preview audio {
    filter: none;
}

/* ============================
   HISTORY PANEL
   ============================ */
.history-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    user-select: none;
}

.history-header h3 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.history-body {
    max-height: 320px;
    overflow-y: auto;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.15s;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.history-item:last-child {
    border-bottom: none;
}

.history-icon {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

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

.history-filename {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.history-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
}

.history-cost {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--warning);
    white-space: nowrap;
}

.history-empty {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.history-empty i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

body.light-theme .history-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* ============================
   FLOATING SUPPORT BUTTON
   ============================ */
.floating-support {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-support-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
}

.floating-support-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(6, 182, 212, 0.6);
}

.floating-support-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.floating-support-menu.hidden {
    display: none !important;
}

.support-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.support-link-btn:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.support-link-btn.zalo {
    background: linear-gradient(135deg, #0068FF, #0054CC);
}

.support-link-btn.telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
}

/* ============================
   SMART BALANCE ALERT MODAL
   ============================ */
#balance-alert-modal .modal-card {
    max-width: 460px;
}

.balance-alert-body {
    padding: 28px;
    text-align: center;
}

.alert-icon-large {
    font-size: 3.5rem;
    color: var(--warning);
    margin-bottom: 16px;
    display: block;
}

.alert-title {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    margin-bottom: 10px;
}

.alert-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.balance-alert-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.breakdown-row .label {
    color: var(--text-muted);
}

.breakdown-row .value {
    font-weight: 700;
}

.breakdown-row.need-row .value {
    color: var(--success);
}

.breakdown-row.current-row .value {
    color: var(--danger);
}

.breakdown-row.shortfall-row {
    border-top: 1px dashed var(--border-color);
    padding-top: 8px;
    margin-top: 4px;
}

.breakdown-row.shortfall-row .value {
    color: var(--warning);
}

body.light-theme .balance-alert-breakdown {
    background: rgba(0,0,0,0.02);
}

/* ============================
   BONUS PACKAGE BADGES
   ============================ */
.amount-btn {
    position: relative;
    overflow: visible;
}

.bonus-badge {
    position: absolute;
    top: -8px;
    right: -6px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    line-height: 1.4;
}

.amount-btn-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 2px;
}

/* ============================
   BILINGUAL TOGGLE
   ============================ */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    padding: 4px 10px;
    border-radius: 15px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.03em;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

/* USD price note */
.price-usd-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 4px;
    font-weight: 400;
}

/* Momo/ZaloPay hint in deposit */
.ewallet-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(168, 85, 247, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 12px;
}

.ewallet-hint i {
    color: var(--accent);
    font-size: 1rem;
}

/* International deposit note */
.intl-deposit-note {
    background: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.intl-deposit-note strong {
    color: #06b6d4;
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* ============================
   LIGHT THEME EXTRAS
   ============================ */
body.light-theme .record-area {
    background: rgba(255, 255, 255, 0.8);
}

body.light-theme .lang-toggle {
    background: rgba(0, 0, 0, 0.04);
}

body.light-theme .history-panel {
    background: rgba(255, 255, 255, 0.9);
}

body.light-theme .floating-support-main {
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

/* ============================
   BTN-WARNING STYLE
   ============================ */
.btn-warning {
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: white;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

/* ============================
   TOAST NOTIFICATION ANIMATION
   ============================ */
@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================
   DRAG OVER STATE
   ============================ */
.upload-zone.drag-over {
    border-color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.04) !important;
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.15);
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================== */
@media (max-width: 1024px) {
    .app-main {
        grid-template-columns: 1fr; /* Stack layout on medium screens */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .app-container {
        padding: 12px;
    }

    /* Header adjustments */
    .app-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 16px;
        text-align: center;
    }

    .brand {
        justify-content: center;
    }

    .header-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .lang-toggle {
        justify-content: center;
        align-self: center;
    }

    .user-balance-card {
        justify-content: space-between;
    }

    .user-profile {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 12px;
        justify-content: space-between;
    }

    /* Modal adjustments */
    .modal-card {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .deposit-qr-layout {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .qr-container {
        width: 100%;
        max-width: 240px;
    }

    .payment-details {
        width: 100%;
    }

    /* Sandbox simulation box */
    .sandbox-test-box {
        padding: 12px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    /* Auth Page adjustments */
    .auth-card {
        padding: 24px 16px;
    }

    .auth-logo h2 {
        font-size: 1.6rem;
    }

    /* Upload box adjustments */
    .upload-zone {
        padding: 24px 16px;
    }

    .upload-icon {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }

    .upload-prompt h3 {
        font-size: 1.1rem;
    }

    /* Deposit Select Package */
    .amount-grid {
        grid-template-columns: 1fr; /* Stack package choices */
        gap: 10px;
    }

    /* Results */
    .transcription-editor {
        height: 300px;
    }

    /* Floating support button */
    .floating-support {
        bottom: 16px;
        right: 16px;
    }

    .floating-support-main {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

.refund-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 15px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #fca5a5;
    text-align: left;
}

.refund-warning-box i {
    color: var(--danger);
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 1px;
}

body.light-theme .refund-warning-box {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

/* ==========================================
   AI CHATBOT WIDGET STYLING
   ========================================== */
.chatbot-widget {
    position: fixed;
    bottom: 28px;
    right: 100px; /* Keep it next to the floating support button */
    z-index: 199;
}

.chatbot-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(99, 102, 241, 0.6);
}

.chatbot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    top: 0;
    left: 0;
    animation: chatbot-pulse-anim 2s infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes chatbot-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    height: 480px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.chatbot-window.hidden {
    display: none !important;
    transform: scale(0.8);
    opacity: 0;
}

.chatbot-header {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-avatar {
    font-size: 1.6rem;
    color: var(--primary);
}

.chatbot-header-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

.chatbot-status {
    font-size: 0.72rem;
    color: var(--success);
    display: block;
}

.chatbot-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.chatbot-close-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
    word-break: break-word;
}

.chatbot-msg.bot {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border-color);
}

.chatbot-msg.user {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.chatbot-msg.loading {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
}

.chatbot-msg.loading span {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    display: inline-block;
    animation: chatbot-blink 1.4s infinite both;
}

.chatbot-msg.loading span:nth-child(2) { animation-delay: .2s; }
.chatbot-msg.loading span:nth-child(3) { animation-delay: .4s; }

@keyframes chatbot-blink {
    0% { opacity: .2; }
    20% { opacity: 1; }
    100% { opacity: .2; }
}

.chatbot-input-area {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 10px;
}

.chatbot-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px 16px;
    color: white;
    font-size: 0.88rem;
}

.chatbot-input-area input:focus {
    outline: none;
    border-color: var(--primary);
}

.chatbot-input-area button {
    background: var(--primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbot-input-area button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Light Theme overrides */
body.light-theme .chatbot-window {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.08);
}

body.light-theme .chatbot-msg.bot {
    background: rgba(0,0,0,0.03);
    color: #1f2937;
    border: 1px solid rgba(0,0,0,0.05);
}

body.light-theme .chatbot-input-area {
    background: rgba(0,0,0,0.02);
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .chatbot-widget {
        right: 16px;
        bottom: 80px; /* Shift up to avoid overlap with support button */
    }
    
    .chatbot-window {
        width: calc(100vw - 32px);
        height: 400px;
    }
}

