/* ============================================================
   FiberOxy Dosya Paylaşım Sistemi — Premium Design
   ============================================================ */

/* Hero */
.share-hero {
    padding: 140px 40px 40px;
    text-align: center;
    position: relative;
}

.share-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.share-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.share-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Shared Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(192, 255, 0, 0.08);
    border: 1px solid rgba(192, 255, 0, 0.2);
    color: #c0ff00;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-badge svg {
    stroke: #c0ff00;
}

.highlight {
    background: linear-gradient(135deg, #c0ff00 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Section */
.share-main {
    padding: 0 40px 60px;
}

.share-container {
    max-width: 640px;
    margin: 0 auto;
}

/* Tab Navigation */
.share-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 28px;
}

.share-tab {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.03);
}

.share-tab.active {
    background: rgba(192, 255, 0, 0.1);
    color: #c0ff00;
    box-shadow: 0 2px 12px rgba(192, 255, 0, 0.1);
}

.share-tab.active svg {
    stroke: #c0ff00;
}

/* Panel */
.share-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.share-panel.active {
    display: block;
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(192, 255, 0, 0.08), inset 0 1px 0 rgba(255,255,255,0.04); }
    50% { box-shadow: 0 0 40px rgba(192, 255, 0, 0.12), 0 0 80px rgba(192, 255, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.06); }
}

/* ============================================================
   UPLOAD ZONE
   ============================================================ */
.upload-zone {
    border: 2px dashed rgba(192, 255, 0, 0.15);
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    background: rgba(192, 255, 0, 0.02);
    overflow: hidden;
}

.upload-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(192, 255, 0, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.upload-zone:hover::before,
.upload-zone.drag-over::before {
    opacity: 1;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: rgba(192, 255, 0, 0.4);
    background: rgba(192, 255, 0, 0.04);
    transform: scale(1.01);
}

.upload-zone.drag-over {
    border-color: #c0ff00;
    box-shadow: 0 0 60px rgba(192, 255, 0, 0.12);
}

.upload-zone-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.upload-zone-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.upload-icon-wrapper {
    margin-bottom: 24px;
}

.upload-icon-wrapper svg {
    stroke: rgba(192, 255, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.upload-zone:hover .upload-icon-wrapper svg,
.upload-zone.drag-over .upload-icon-wrapper svg {
    stroke: #c0ff00;
    filter: drop-shadow(0 0 20px rgba(192, 255, 0, 0.4));
    transform: translateY(-6px);
}

.upload-btn {
    padding: 13px 32px;
    border: 1px solid rgba(192, 255, 0, 0.3);
    border-radius: 12px;
    background: rgba(192, 255, 0, 0.08);
    color: #c0ff00;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.upload-btn:hover {
    background: rgba(192, 255, 0, 0.15);
    border-color: rgba(192, 255, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192, 255, 0, 0.15);
}

/* Selected File */
.selected-file {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(192, 255, 0, 0.1);
    border-radius: 16px;
    margin-top: 20px;
    animation: slideUp 0.3s ease;
}

.selected-file-icon svg {
    stroke: rgba(192, 255, 0, 0.7);
}

.selected-file-details {
    flex: 1;
    min-width: 0;
}

.selected-file-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selected-file-size {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

.selected-file-remove {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 100, 100, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.selected-file-remove svg {
    stroke: rgba(255, 100, 100, 0.6);
}

.selected-file-remove:hover {
    background: rgba(255, 100, 100, 0.18);
    transform: scale(1.08);
}

.selected-file-remove:hover svg {
    stroke: #ff6464;
}

/* Password Section */
.password-section {
    margin-top: 16px;
    animation: fadeIn 0.3s ease;
}

.password-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.password-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.password-toggle input[type="checkbox"] {
    display: none;
}

.password-toggle-slider {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.password-toggle-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    top: 3px;
    left: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.password-toggle input:checked + .password-toggle-slider {
    background: rgba(192, 255, 0, 0.3);
}

.password-toggle input:checked + .password-toggle-slider::after {
    left: 23px;
    background: #c0ff00;
    box-shadow: 0 0 8px rgba(192, 255, 0, 0.4);
}

.password-toggle-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.password-toggle-text svg {
    stroke: rgba(255, 255, 255, 0.35);
}

.password-input-wrapper {
    margin-top: 12px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.password-input-wrapper input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.password-input-wrapper input:focus {
    border-color: rgba(192, 255, 0, 0.3);
    background: rgba(192, 255, 0, 0.03);
    box-shadow: 0 0 20px rgba(192, 255, 0, 0.05);
}

.password-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.password-eye {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.password-eye svg {
    stroke: rgba(255, 255, 255, 0.25);
    transition: stroke 0.3s ease;
}

.password-eye:hover svg {
    stroke: rgba(255, 255, 255, 0.6);
}

/* Submit Button */
.share-submit-btn {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #c0ff00 0%, #00ff88 100%);
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    animation: fadeIn 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-submit-btn:hover::after {
    opacity: 1;
}

.share-submit-btn svg {
    stroke: #000000;
}

.share-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(192, 255, 0, 0.25);
}

.share-submit-btn:active {
    transform: translateY(0);
}

.share-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Progress */
.upload-progress {
    margin-top: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    animation: fadeIn 0.3s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c0ff00 0%, #00ff88 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(192, 255, 0, 0.35);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* ============================================================
   UPLOAD RESULT — Premium Card
   ============================================================ */
.upload-result {
    text-align: center;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(192, 255, 0, 0.08);
    border-radius: 24px;
    padding: 40px 32px 36px;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease, glowPulse 4s ease-in-out 0.5s infinite;
}

.upload-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(192, 255, 0, 0.5) 50%, transparent 100%);
}

.upload-result::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 20%, rgba(192, 255, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.result-success-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.result-success-icon svg {
    stroke: #c0ff00;
    filter: drop-shadow(0 0 20px rgba(192, 255, 0, 0.4));
    animation: successBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successBounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.upload-result h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.result-expiry {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.result-expiry::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(192, 255, 0, 0.5);
    display: inline-block;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Result Grid — Side by Side Layout */
.result-code-section {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(192, 255, 0, 0.1);
    border-radius: 18px;
    padding: 28px 24px 22px;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.result-code-section:hover {
    border-color: rgba(192, 255, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.result-url-section {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 20px 24px 16px;
    margin-bottom: 12px;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.result-url-section:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.result-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(192, 255, 0, 0.5);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.result-code {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 12px;
    background: linear-gradient(135deg, #c0ff00 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    font-family: 'Inter', monospace;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(192, 255, 0, 0.15));
}

.result-url {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    word-break: break-all;
    margin-bottom: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-family: 'Inter', monospace;
    border: 1px solid rgba(255, 255, 255, 0.04);
    letter-spacing: 0.3px;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: 1px solid rgba(192, 255, 0, 0.15);
    border-radius: 10px;
    background: rgba(192, 255, 0, 0.05);
    color: rgba(192, 255, 0, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.copy-btn:hover {
    background: rgba(192, 255, 0, 0.12);
    border-color: rgba(192, 255, 0, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(192, 255, 0, 0.1);
}

.copy-btn.copied {
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

/* QR Section */
.result-qr-section {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.result-qr-section:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.result-qr-section .result-label {
    text-align: center;
}

.qr-container {
    display: inline-flex;
    padding: 14px;
    background: #ffffff;
    border-radius: 14px;
    margin-top: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.qr-container:hover {
    transform: scale(1.03);
}

.qr-container canvas,
.qr-container img {
    display: block !important;
    border-radius: 4px;
}

/* New Share Button */
.share-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.share-new-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   DOWNLOAD PANEL
   ============================================================ */
.download-code-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.code-input-wrapper {
    position: relative;
}

.code-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    stroke: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transition: stroke 0.3s ease;
}

.code-input-wrapper input:focus ~ .code-icon {
    stroke: rgba(192, 255, 0, 0.4);
}

.code-input-wrapper input {
    width: 100%;
    padding: 20px 20px 20px 52px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 8px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.code-input-wrapper input:focus {
    border-color: rgba(192, 255, 0, 0.3);
    background: rgba(192, 255, 0, 0.03);
    box-shadow: 0 0 30px rgba(192, 255, 0, 0.06);
}

.code-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 500;
}

.download-search-btn {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #c0ff00 0%, #00ff88 100%);
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.download-search-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-search-btn:hover::after {
    opacity: 1;
}

.download-search-btn svg {
    stroke: #000000;
}

.download-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(192, 255, 0, 0.25);
}

.download-search-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Download Loading */
.download-loading {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.3s ease;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(192, 255, 0, 0.1);
    border-top-color: #c0ff00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.download-loading span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

/* Download Info */
.download-info {
    animation: slideUp 0.4s ease;
}

.download-file-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(192, 255, 0, 0.08);
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.download-file-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 255, 0, 0.3), transparent);
}

.download-file-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(192, 255, 0, 0.06);
    border: 1px solid rgba(192, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-file-icon svg {
    stroke: rgba(192, 255, 0, 0.7);
}

.download-file-details {
    flex: 1;
    min-width: 0;
}

.download-file-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    word-break: break-word;
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.download-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.download-meta span svg {
    stroke: rgba(192, 255, 0, 0.5);
}

/* Download Password */
.download-password {
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

.download-password-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 200, 50, 0.05);
    border: 1px solid rgba(255, 200, 50, 0.08);
    color: rgba(255, 200, 50, 0.75);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.download-password-notice svg {
    stroke: rgba(255, 200, 50, 0.6);
    flex-shrink: 0;
}

.download-password-input-wrapper {
    position: relative;
}

.download-password-input-wrapper input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.download-password-input-wrapper input:focus {
    border-color: rgba(192, 255, 0, 0.3);
    background: rgba(192, 255, 0, 0.03);
}

.download-password-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.download-password-input-wrapper .password-eye {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

/* Download Button */
.download-btn {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #c0ff00 0%, #00ff88 100%);
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.download-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-btn:hover::after {
    opacity: 1;
}

.download-btn svg {
    stroke: #000000;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(192, 255, 0, 0.25);
}

.download-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Download Error */
.download-error {
    text-align: center;
    padding: 48px 24px;
    animation: fadeIn 0.4s ease;
    background: rgba(255, 100, 100, 0.03);
    border: 1px solid rgba(255, 100, 100, 0.08);
    border-radius: 20px;
}

.download-error svg {
    stroke: rgba(255, 100, 100, 0.5);
    margin-bottom: 16px;
}

.download-error h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 100, 100, 0.85);
}

.download-error p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 24px;
    line-height: 1.6;
}

.try-again-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-again-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.share-info-section {
    padding: 20px 40px 100px;
}

.share-info-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.info-card {
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    border-color: rgba(192, 255, 0, 0.12);
    background: rgba(192, 255, 0, 0.02);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(192, 255, 0, 0.05);
    border: 1px solid rgba(192, 255, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: rgba(192, 255, 0, 0.08);
    border-color: rgba(192, 255, 0, 0.15);
}

.info-icon svg {
    stroke: rgba(192, 255, 0, 0.6);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon svg {
    stroke: rgba(192, 255, 0, 0.9);
    filter: drop-shadow(0 0 8px rgba(192, 255, 0, 0.2));
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.info-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 14px 24px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(192, 255, 0, 0.15);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.toast.error {
    border-color: rgba(255, 100, 100, 0.2);
}

.toast.error svg {
    stroke: #ff6464;
}

.toast.success svg {
    stroke: #c0ff00;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .share-hero {
        padding: 120px 24px 32px;
    }

    .share-main {
        padding: 0 16px 40px;
    }

    .upload-zone {
        padding: 44px 24px;
        border-radius: 20px;
    }

    .upload-zone-content h3 {
        font-size: 1rem;
    }

    .upload-icon-wrapper svg {
        width: 44px;
        height: 44px;
    }

    .upload-result {
        padding: 32px 20px 28px;
        border-radius: 20px;
    }

    .result-code {
        font-size: 2rem;
        letter-spacing: 8px;
    }

    .result-code-section,
    .result-url-section,
    .result-qr-section {
        border-radius: 14px;
        padding: 20px 16px;
    }

    .share-info-section {
        padding: 16px 16px 80px;
    }

    .share-info-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .info-card {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .download-file-card {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .download-meta {
        justify-content: center;
    }

    .code-input-wrapper input {
        font-size: 20px;
        padding: 18px 16px 18px 46px;
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .share-info-container {
        grid-template-columns: 1fr;
    }

    .share-tabs {
        flex-direction: column;
    }

    .result-code {
        font-size: 1.6rem;
        letter-spacing: 6px;
    }

    .upload-result {
        padding: 28px 16px 24px;
    }
}
