/* -------------------------------------------------
   AdsGeeky QR Scanner – v2.4
   ------------------------------------------------- */
.adsgeeky-qr-wrap {
    max-width: 720px;
    margin: 40px auto;
    padding: 28px;
    background: #fafbfc;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.adsgeeky-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a56db;
    text-align: center;
    margin-bottom: 24px;
}

.adsgeeky-section {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    text-align: center;
}

/* Upload Section */
.adsgeeky-upload-section {}

/* File Label */
.adsgeeky-file-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #e5edff;
    color: #1a56db;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
}
.adsgeeky-file-label:hover { background: #d0e0ff; }
.icon-upload { fill: #1a56db; }

/* Preview */
.adsgeeky-preview {
    margin: 16px 0;
    min-height: 60px;
}
.adsgeeky-preview-img {
    max-width: 100%;
    max-height: 280px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.1);
    transition: transform .3s;
}
.adsgeeky-preview-img:hover { transform: scale(1.03); }
.adsgeeky-preview-caption {
    margin-top: 8px;
    font-size: .85rem;
    color: #64748b;
    font-style: italic;
}

/* Actions */
.adsgeeky-upload-actions,
.adsgeeky-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.adsgeeky-btn {
    padding: 12px 24px;
    font-size: .95rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all .2s;
}
.adsgeeky-btn.primary   { background:#1a56db; color:#fff; }
.adsgeeky-btn.primary:hover   { background:#0d41a1; transform:translateY(-1px); }
.adsgeeky-btn.primary:disabled { background:#94a3b8; cursor:not-allowed; transform:none; }
.adsgeeky-btn.secondary { background:#6c757d; color:#fff; }
.adsgeeky-btn.secondary:hover { background:#5a6268; }
.adsgeeky-btn.secondary:disabled { background:#9ca3af; cursor:not-allowed; transform:none; }

/* Result Section */
.adsgeeky-result-section h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    color: #1a56db;
}
.adsgeeky-result-text {
    margin: 0 0 16px;
    font-size: 1rem;
    color: #1f2937;
    word-break: break-all;
    min-height: 24px;
}

/* Footer */
.adsgeeky-note { font-size:.85rem; color:#6b7280; text-align:center; margin-top:20px; }
.adsgeeky-powered { font-size:.75rem; color:#9ca3af; text-align:center; margin-top:8px; }
.adsgeeky-powered a { color:#1a56db; text-decoration:none; }
.adsgeeky-powered a:hover { text-decoration:underline; }

/* Responsive */
@media (max-width:560px) {
    .adsgeeky-upload-actions,
    .adsgeeky-result-actions { flex-direction:column; }
    .adsgeeky-btn { width:100%; }
}