/* =============================================
   STILURI GENERALE
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #e0e6ed;
    min-height: 100vh;
    position: relative;
    background: #0a0e17;
    overflow-y: auto;
    overflow-x: hidden;
}

/* =============================================
   BACKGROUND VIDEO
   ============================================= */

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    filter: blur(2px) brightness(0.7);
    -webkit-filter: blur(2px) brightness(0.7);
}

/* Fallback dacă video-ul nu se încarcă */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0e17 0%, #141b2b 30%, #0d1520 60%, #0a0e17 100%);
    z-index: -1;
}

/* Overlay pentru lizibilitate - mai opac pentru efect subtil */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 23, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
    pointer-events: none;
}

/* Efect de particule / grid subtil */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 153, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 153, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Element decorativ - cerc luminos */
.glow-effect {
    position: fixed;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.glow-effect-2 {
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.main-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 25px;
    min-height: 100vh;
    align-items: flex-start;
}

/* =============================================
   SIDEBAR (DREAPTA)
   ============================================= */

.sidebar {
    flex: 0 0 280px;
    background: rgba(13, 18, 30, 0.80);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.03);
    position: sticky;
    top: 30px;
    align-self: flex-start;
    order: 2;
}

.sidebar-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8c7e6;
}

.sidebar-title i {
    color: #0099ff;
    font-size: 20px;
}

.client-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 20px 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.25s;
}

.client-card:hover {
    border-color: rgba(0, 153, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.client-name {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.client-name i {
    color: #0099ff;
    font-size: 18px;
}

.client-desc {
    font-size: 13px;
    color: #8892b0;
    line-height: 1.5;
    margin-bottom: 14px;
}

.client-desc strong {
    color: #b0c4ff;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg, #0099ff, #0077cc);
    border: none;
    padding: 10px 18px;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.15s;
    box-shadow: 0 4px 14px rgba(0, 153, 255, 0.2);
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
}

.download-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.35);
    background: linear-gradient(145deg, #1aaaff, #0088dd);
}

.download-btn:active {
    transform: scale(0.97);
}

.download-btn .dl-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn .dl-count {
    background: rgba(0,0,0,0.25);
    padding: 2px 14px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 700;
}

.client-features {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    color: #6b7a93;
}

.client-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.client-features i {
    color: #0099ff;
    font-size: 11px;
}

/* =============================================
   STATISTICS SECTION
   ============================================= */

.stats-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.stats-title {
    font-weight: 600;
    font-size: 14px;
    color: #8892b0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-title i {
    color: #0099ff;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}

.stat-item .stat-label {
    font-size: 13px;
    color: #9aabca;
}

.stat-item .stat-value {
    font-weight: 700;
    font-size: 18px;
    color: #0099ff;
    font-family: 'Orbitron', monospace;
}

.stat-detail {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.stat-detail-item {
    flex: 1;
    min-width: 60px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    padding: 10px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
}

.stat-detail-item .number {
    font-weight: 700;
    font-size: 16px;
    color: #b0c4ff;
}

.stat-detail-item .label {
    font-size: 10px;
    color: #6b7a93;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.stat-pass .number { color: #4caf50; }
.stat-fail .number { color: #f44336; }
.stat-warn .number { color: #ffb74d; }

/* =============================================
   MAIN CONTENT
   ============================================= */

.main-content {
    flex: 1;
    min-width: 0;
    order: 1;
}

.verifier-container {
    width: 100%;
    background: rgba(13, 18, 30, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 40px 45px;
    box-shadow: 0 25px 50px -8px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.03);
}

/* =============================================
   HEADER / BRAND
   ============================================= */

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 20px;
}

.logo-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.logo-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    font-size: 32px;
    color: #0099ff;
    filter: drop-shadow(0 0 8px rgba(0, 153, 255, 0.3));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f0f4ff, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    font-weight: 400;
    color: #8892b0;
    -webkit-text-fill-color: #8892b0;
    background: none;
}

.logo-description {
    font-size: 14px;
    color: #8892b0;
    margin-left: 46px;
    line-height: 1.5;
    max-width: 500px;
    letter-spacing: 0.3px;
}

.logo-description strong {
    color: #66ccff;
    font-weight: 600;
}

.logo-description i {
    color: #0099ff;
    margin: 0 4px;
}

.badge {
    background: rgba(0, 153, 255, 0.12);
    border: 1px solid rgba(0, 153, 255, 0.25);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #66ccff;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    font-size: 14px;
}

/* =============================================
   UPLOAD SECTION
   ============================================= */

.upload-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 40px 30px;
    margin-bottom: 40px;
    transition: 0.2s;
    text-align: center;
}

.upload-section:hover {
    border-color: rgba(0, 153, 255, 0.3);
    background: rgba(0, 153, 255, 0.02);
}

.upload-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.upload-title i {
    color: #0099ff;
    margin-right: 12px;
}

.upload-sub {
    color: #8892b0;
    font-size: 14px;
    margin-bottom: 28px;
}

.file-drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 28px;
    border: 2px dashed rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: 0.3s;
}

.file-drop-zone:hover {
    background: rgba(0, 153, 255, 0.05);
    border-color: rgba(0, 153, 255, 0.3);
}

.file-drop-zone i {
    font-size: 48px;
    color: #0099ff;
    margin-bottom: 12px;
    opacity: 0.8;
}

.file-drop-zone p {
    font-size: 15px;
    font-weight: 500;
}

.file-drop-zone small {
    color: #6b7a93;
    font-size: 13px;
    margin-top: 6px;
}

#fileInput {
    display: none;
}

.selected-file {
    margin-top: 18px;
    font-size: 14px;
    background: rgba(0, 153, 255, 0.1);
    padding: 10px 20px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 153, 255, 0.2);
}

.selected-file i {
    color: #0099ff;
}

.btn-verify {
    margin-top: 28px;
    background: linear-gradient(145deg, #0099ff, #0077cc);
    border: none;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: 0.15s;
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.btn-verify:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 153, 255, 0.4);
    background: linear-gradient(145deg, #1aaaff, #0088dd);
}

.btn-verify:active {
    transform: scale(0.97);
}

.btn-verify i {
    font-size: 20px;
}

/* =============================================
   RESULTS PANEL
   ============================================= */

.results-panel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 28px;
    padding: 28px 30px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.04);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.results-header h3 {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-header h3 i {
    color: #0099ff;
}

.status-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    color: #b0c4ff;
}

.result-content {
    min-height: 100px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 24px;
    font-family: 'Inter', monospace;
    font-size: 14px;
    line-height: 1.7;
    color: #c8d0dc;
    border: 1px solid rgba(255,255,255,0.03);
    white-space: pre-wrap;
    word-break: break-word;
}

.result-content .placeholder {
    color: #5a6a82;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =============================================
   HISTORY TABLE
   ============================================= */

.history-section {
    margin-top: 44px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.history-header h4 {
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8c7e6;
}

.history-header h4 i {
    color: #0099ff;
}

.history-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.04);
    background: rgba(0, 0, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th {
    text-align: left;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    color: #9aabca;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #d0dbea;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(0, 153, 255, 0.03);
}

.status-pass {
    color: #4caf50;
    font-weight: 600;
}

.status-fail {
    color: #f44336;
    font-weight: 600;
}

.status-warning {
    color: #ffb74d;
    font-weight: 600;
}

.file-name-cell {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-name-cell i {
    color: #0099ff;
    font-size: 14px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer-note {
    margin-top: 30px;
    text-align: center;
    color: #5a6a82;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 28px;
    letter-spacing: 0.3px;
}

.footer-note i {
    color: #0099ff;
}

/* =============================================
   LOADING ANIMATION
   ============================================= */

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}

/* =============================================
   RESPONSIVE DESIGN - OPTIMIZAT
   ============================================= */

/* Tablete și ecrane medii */
@media (max-width: 1024px) {
    .main-wrapper {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .sidebar {
        flex: 1;
        width: 100%;
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 24px;
        order: 1;
        margin-bottom: 0;
    }
    
    .sidebar-title {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }
    
    .client-card {
        margin-bottom: 0;
    }
    
    .stats-section {
        grid-column: 1 / -1;
        margin-top: 0;
        padding-top: 16px;
    }
    
    .stat-detail {
        justify-content: center;
    }
    
    .main-content {
        order: 2;
        width: 100%;
    }
    
    .logo-description {
        margin-left: 0;
        max-width: 100%;
    }
    
    .verifier-container {
        padding: 30px 25px;
    }
}

/* Mobile mare și tablete mici */
@media (max-width: 768px) {
    .main-wrapper {
        padding: 15px;
        gap: 15px;
    }
    
    .sidebar {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 18px 16px;
        border-radius: 24px;
    }
    
    .sidebar-title {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .client-card {
        padding: 16px 14px;
    }
    
    .client-name {
        font-size: 14px;
    }
    
    .client-desc {
        font-size: 12px;
    }
    
    .download-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .verifier-container {
        padding: 24px 18px;
        border-radius: 28px;
    }
    
    .brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-icon {
        font-size: 26px;
    }
    
    .logo-description {
        font-size: 13px;
        margin-left: 0;
        max-width: 100%;
    }
    
    .badge {
        font-size: 12px;
        padding: 4px 14px;
    }
    
    .upload-section {
        padding: 24px 16px;
        margin-bottom: 25px;
    }
    
    .upload-title {
        font-size: 18px;
    }
    
    .upload-sub {
        font-size: 13px;
    }
    
    .file-drop-zone {
        padding: 20px 15px;
    }
    
    .file-drop-zone i {
        font-size: 36px;
    }
    
    .file-drop-zone p {
        font-size: 14px;
    }
    
    .btn-verify {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .results-panel {
        padding: 20px 16px;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .results-header h3 {
        font-size: 16px;
    }
    
    .result-content {
        padding: 18px;
        font-size: 13px;
        min-height: 80px;
    }
    
    .history-section {
        margin-top: 30px;
    }
    
    .history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .history-header h4 {
        font-size: 15px;
    }
    
    table {
        font-size: 12px;
    }
    
    th, td {
        padding: 10px 12px;
    }
    
    .stat-detail-item {
        min-width: 50px;
        padding: 8px 6px;
    }
    
    .stat-detail-item .number {
        font-size: 14px;
    }
    
    .footer-note {
        font-size: 12px;
        padding-top: 20px;
        margin-top: 20px;
    }
}

/* Mobile mic (sub 480px) */
@media (max-width: 480px) {
    .main-wrapper {
        padding: 10px;
        gap: 12px;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 14px;
        border-radius: 20px;
    }
    
    .sidebar-title {
        font-size: 15px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .client-card {
        padding: 14px 12px;
        margin-bottom: 0;
    }
    
    .client-name {
        font-size: 13px;
    }
    
    .client-desc {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .download-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .download-btn .dl-count {
        font-size: 11px;
        padding: 2px 10px;
    }
    
    .client-features {
        font-size: 11px;
    }
    
    .client-features span {
        gap: 6px;
    }
    
    .verifier-container {
        padding: 18px 14px;
        border-radius: 24px;
    }
    
    .logo-top {
        gap: 10px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 22px;
    }
    
    .logo-description {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .upload-section {
        padding: 18px 12px;
        margin-bottom: 20px;
        border-radius: 24px;
    }
    
    .upload-title {
        font-size: 16px;
    }
    
    .upload-title i {
        margin-right: 8px;
    }
    
    .upload-sub {
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .file-drop-zone {
        padding: 16px 12px;
        border-radius: 20px;
    }
    
    .file-drop-zone i {
        font-size: 30px;
        margin-bottom: 8px;
    }
    
    .file-drop-zone p {
        font-size: 13px;
    }
    
    .file-drop-zone small {
        font-size: 11px;
    }
    
    .selected-file {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .btn-verify {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .btn-verify i {
        font-size: 16px;
    }
    
    .results-panel {
        padding: 16px 12px;
        border-radius: 20px;
        margin-top: 20px;
    }
    
    .results-header h3 {
        font-size: 14px;
        gap: 8px;
    }
    
    .status-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .result-content {
        padding: 14px;
        font-size: 12px;
        min-height: 60px;
        border-radius: 16px;
    }
    
    .history-section {
        margin-top: 24px;
    }
    
    .history-header h4 {
        font-size: 14px;
    }
    
    .history-table-wrap {
        border-radius: 16px;
    }
    
    th, td {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .file-name-cell i {
        font-size: 12px;
    }
    
    .stat-item {
        padding: 8px 12px;
    }
    
    .stat-item .stat-label {
        font-size: 12px;
    }
    
    .stat-item .stat-value {
        font-size: 16px;
    }
    
    .stat-detail {
        gap: 10px;
    }
    
    .stat-detail-item {
        padding: 6px 4px;
        min-width: 40px;
    }
    
    .stat-detail-item .number {
        font-size: 13px;
    }
    
    .stat-detail-item .label {
        font-size: 9px;
    }
    
    .footer-note {
        font-size: 11px;
        padding-top: 16px;
        margin-top: 16px;
    }
}

/* Ajustare pentru ecrane foarte mari (4K) */
@media (min-width: 1920px) {
    .main-wrapper {
        max-width: 1800px;
        padding: 40px 50px;
    }
    
    .verifier-container {
        padding: 50px 60px;
        border-radius: 48px;
    }
    
    .sidebar {
        flex: 0 0 320px;
        padding: 32px 28px;
        border-radius: 40px;
    }
    
    .logo-text {
        font-size: 34px;
    }
    
    .logo-icon {
        font-size: 40px;
    }
    
    .logo-description {
        font-size: 16px;
        max-width: 600px;
    }
}

/* Ajustare pentru orientare landscape pe mobil */
@media (max-height: 500px) and (orientation: landscape) {
    .main-wrapper {
        padding: 10px 20px;
        gap: 15px;
    }
    
    .sidebar {
        padding: 16px 18px;
    }
    
    .client-card {
        padding: 12px 14px;
    }
    
    .client-desc {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .download-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .verifier-container {
        padding: 18px 20px;
    }
    
    .upload-section {
        padding: 16px 18px;
        margin-bottom: 16px;
    }
    
    .results-panel {
        padding: 16px 18px;
        margin-top: 16px;
    }
    
    .history-section {
        margin-top: 20px;
    }
    
    .glow-effect, .glow-effect-2 {
        display: none;
    }
}

/* Ajustări pentru video pe mobil */
@media (max-width: 768px) {
    .video-background iframe {
        width: 200vw;
        height: 200vh;
    }
    
    .video-overlay {
        background: rgba(10, 14, 23, 0.80);
    }
}

/* Ajustare pentru ecrane cu rată de aspect diferită */
@media (aspect-ratio: 16/9) and (max-width: 768px) {
    .video-background iframe {
        width: 100vw;
        height: 100vh;
    }
}

@media (aspect-ratio: 9/16) {
    .video-background iframe {
        width: 300vw;
        height: 300vh;
    }
}