/* ── DigiRG File Locker — Dark Gold Theme ── */

.digirg-fl-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
    font-family: 'Sora', 'Segoe UI', sans-serif;
}

.digirg-fl-card {
    background: linear-gradient(135deg, #0d0d1f 0%, #1a1a2e 100%);
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: 14px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,162,39,0.08);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.digirg-fl-card:hover {
    border-color: rgba(201,162,39,0.5);
    box-shadow: 0 8px 32px rgba(201,162,39,0.1), inset 0 1px 0 rgba(201,162,39,0.1);
}

.fl-info { flex: 1; }
.fl-title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #e8d5a3;
    letter-spacing: 0.01em;
}
.fl-desc {
    margin: 0;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.fl-action-area {
    min-width: 240px;
    text-align: center;
}

/* ── Buttons ── */
.fl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.22s;
    letter-spacing: 0.02em;
}
.fl-get-btn {
    background: linear-gradient(135deg, #c9a227, #e8b830);
    color: #0a0a1a;
    width: 100%;
    box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.fl-get-btn:hover {
    background: linear-gradient(135deg, #e8b830, #f5c842);
    box-shadow: 0 6px 24px rgba(201,162,39,0.5);
    transform: translateY(-1px);
}
.fl-verify-btn {
    background: #c9a227;
    color: #0a0a1a;
    padding: 10px 18px;
    border-radius: 0 7px 7px 0;
    flex-shrink: 0;
}
.fl-verify-btn:hover { background: #e8b830; }
.fl-verify-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.fl-dl-btn {
    background: linear-gradient(135deg, #1a6b3c, #22a05a);
    color: #fff;
    width: 100%;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(34,160,90,0.3);
    text-decoration: none;
}
.fl-dl-btn:hover {
    background: linear-gradient(135deg, #22a05a, #28c46e);
    box-shadow: 0 6px 24px rgba(34,160,90,0.5);
    transform: translateY(-1px);
}

/* ── Password box ── */
.fl-pass-box {
    display: flex;
    width: 100%;
}
.fl-pass-input {
    flex: 1;
    background: #0a0a1a;
    border: 1px solid #c9a22755;
    border-right: none;
    border-radius: 7px 0 0 7px;
    color: #eee;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    transition: border-color 0.2s;
}
.fl-pass-input:focus { border-color: #c9a227; }
.fl-pass-input::placeholder { color: #555; }

.fl-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 8px;
    min-height: 18px;
    text-align: left;
}

/* ── Loader / Countdown ── */
.fl-loader-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.fl-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(201,162,39,0.2);
    border-top-color: #c9a227;
    border-radius: 50%;
    animation: fl-spin 0.9s linear infinite;
}
@keyframes fl-spin { to { transform: rotate(360deg); } }

.fl-countdown {
    color: #c9a227;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ── Link revealed ── */
.fl-link-note {
    margin: 8px 0 0;
    font-size: 11px;
    color: #666;
}

/* ── Mobile responsive ── */
@media (max-width: 600px) {
    .digirg-fl-card {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    .fl-action-area { min-width: unset; }
}
