/**
 * FileDroppy.com - Cinematic Immersive Design
 * Full-screen photo backgrounds with frosted glass UI
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

/* ========================================
   CSS Variables
   ======================================== */

:root {
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.55);

    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-bg-strong: rgba(255, 255, 255, 0.18);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-hover: rgba(255, 255, 255, 0.35);

    --card-bg: rgba(20, 20, 30, 0.55);
    --card-bg-solid: rgba(15, 15, 25, 0.75);

    --accent: #e8b931;
    --accent-glow: rgba(232, 185, 49, 0.4);
    --accent-hover: #f0c944;

    --success: #34d399;
    --error: #f87171;
    --warning: #fbbf24;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --blur: 24px;
    --blur-strong: 40px;
}

/* ========================================
   Base
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: #000;
}

/* ========================================
   Background Slideshow
   ======================================== */

.bg-slideshow {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.bg-slide {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    animation: kenBurns 30s ease-in-out infinite alternate;
}

.bg-slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.08); }
}

.bg-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(0, 0, 0, 0.65) 100%
        );
}

.bg-grain {
    position: fixed;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ========================================
   Header
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    transition: background 0.4s;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-white);
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: #000;
    transition: transform 0.3s;
}

.logo:hover .logo-mark {
    transform: rotate(-8deg) scale(1.08);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--accent);
}

/* ========================================
   Main Content
   ======================================== */

.main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.5rem 4rem;
}

/* ========================================
   Hero
   ======================================== */

.hero-section {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease 0.2s both;
}

.hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

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

/* ========================================
   Upload Card (Frosted Glass)
   ======================================== */

.upload-card {
    width: 100%;
    max-width: 560px;
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeUp 1s ease 0.4s both;
}

/* ========================================
   Upload Dropzone
   ======================================== */

.upload-dropzone {
    border: 2px dashed var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.upload-dropzone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(232, 185, 49, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.upload-dropzone:hover {
    border-color: var(--accent);
    transform: scale(1.01);
}

.upload-dropzone:hover::before {
    opacity: 1;
}

.upload-dropzone.dragover {
    border-color: var(--accent);
    background: rgba(232, 185, 49, 0.08);
    transform: scale(1.03);
    box-shadow: 0 0 60px var(--accent-glow);
}

.upload-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.upload-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.upload-dropzone:hover .upload-icon-circle {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.upload-icon-circle svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    transition: transform 0.4s;
}

.upload-dropzone:hover .upload-icon-circle svg {
    transform: translateY(-3px);
}

.upload-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.4rem;
}

.upload-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.upload-limits {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.upload-limit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
}

.upload-limit svg {
    width: 14px;
    height: 14px;
    color: var(--success);
}

.upload-input {
    display: none;
}

/* ========================================
   File List
   ======================================== */

.file-list {
    margin-top: 1.25rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 0.6rem;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.file-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.file-icon svg {
    width: 20px;
    height: 20px;
}

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

.file-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.file-remove {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(248, 113, 113, 0.15);
    border-radius: 8px;
    color: var(--error);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.file-remove:hover {
    background: rgba(248, 113, 113, 0.3);
    transform: scale(1.1);
}

.file-remove svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   Form Elements
   ======================================== */

.form-section {
    margin-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.75rem;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    transition: all 0.25s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 70px;
    resize: vertical;
}

.form-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Email Tags */
.email-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    min-height: 44px;
    cursor: text;
    transition: all 0.25s;
}

.email-tags-container:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.email-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    background: rgba(232, 185, 49, 0.15);
    border: 1px solid rgba(232, 185, 49, 0.3);
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--accent-hover);
}

.email-tag-remove {
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s;
}

.email-tag-remove:hover {
    color: var(--error);
}

.email-tags-input {
    flex: 1;
    min-width: 120px;
    border: none;
    background: transparent;
    padding: 0.25rem;
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
}

.email-tags-input:focus {
    outline: none;
}

/* Password */
.password-section {
    padding: 0.85rem 1rem;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.password-toggle {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
}

.password-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.password-toggle-text {
    font-size: 0.88rem;
    color: var(--text-light);
}

.password-field {
    margin-top: 0.85rem;
    display: none;
}

.password-field.visible {
    display: block;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    width: 100%;
    letter-spacing: 0.02em;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover:not(:disabled) {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

/* ========================================
   Success Section
   ======================================== */

.success-section {
    text-align: center;
    animation: revealSuccess 0.8s ease both;
}

@keyframes revealSuccess {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
    box-shadow: 0 0 40px var(--accent-glow);
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.success-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 0.4rem;
}

.success-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.share-link-box {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.share-link-input {
    flex: 1;
    padding: 0.65rem 0.85rem;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
}

.share-link-input:focus {
    outline: none;
}

.copy-btn {
    padding: 0.65rem 1.15rem;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    color: #000;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.copy-btn.copied {
    background: var(--success);
    color: #fff;
}

.transfer-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.transfer-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.new-transfer-btn {
    padding: 0.8rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.new-transfer-btn:hover {
    border-color: var(--accent);
    background: rgba(232, 185, 49, 0.1);
    transform: translateY(-2px);
}

/* ========================================
   Upload Overlay
   ======================================== */

.upload-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.upload-overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.upload-overlay.visible {
    display: flex;
}

.upload-overlay-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 380px;
    width: 90%;
    padding: 2rem;
}

.upload-spinner {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
}

.spinner-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.spinner-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 4;
}

.spinner-progress {
    fill: none;
    stroke: var(--accent);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.4s ease;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.spinner-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.upload-status {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.4rem;
}

.upload-file-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.upload-progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
    box-shadow: 0 0 12px var(--accent-glow);
}

.upload-speed {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Download Page
   ======================================== */

.download-card {
    max-width: 520px;
}

.download-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.sender-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.sender-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
}

.sender-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 1.05rem;
}

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

.download-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.download-message {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
    padding: 0.85rem 1.15rem;
    background: var(--glass-bg);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 1rem;
}

.download-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.download-file-list {
    margin-bottom: 1.5rem;
}

.download-file-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 0.6rem;
    transition: all 0.25s;
}

.download-file-item:hover {
    background: var(--glass-bg-strong);
    border-color: var(--glass-border);
}

.download-btn {
    padding: 0.45rem 0.95rem;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.download-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: scale(1.05);
}

.download-all-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-md);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.download-all-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.download-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.download-all-btn:hover::after {
    transform: translateX(100%);
}

/* Status Pages */
.status-section {
    text-align: center;
    padding: 2rem 0;
}

.status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon.error {
    background: rgba(248, 113, 113, 0.15);
    border: 2px solid rgba(248, 113, 113, 0.4);
}

.status-icon.expired {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.4);
}

.status-icon.password {
    background: rgba(232, 185, 49, 0.15);
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.status-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.65rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.status-message {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.password-error {
    color: var(--error);
    font-size: 0.82rem;
    margin-top: 0.4rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 0.8;
}

/* ========================================
   Photo Credit
   ======================================== */

.photo-credit {
    position: fixed;
    bottom: 1rem;
    right: 1.5rem;
    z-index: 10;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.photo-credit a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.photo-credit:hover,
.photo-credit:hover a {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 640px) {
    .header {
        padding: 1rem 1.25rem;
    }

    .main-content {
        padding: 6rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .upload-card {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .upload-dropzone {
        padding: 2rem 1rem;
    }

    .upload-limits {
        flex-direction: column;
        gap: 0.35rem;
        align-items: center;
    }

    .transfer-info {
        flex-direction: column;
        gap: 0.35rem;
    }

    .download-meta {
        flex-direction: column;
        gap: 0.2rem;
    }

    .photo-credit {
        display: none;
    }

    .header-nav { gap: 0.5rem; }
    .nav-link { padding: 0.35rem 0.5rem; font-size: 0.8rem; }
    .nav-btn { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
    .pricing-cards { flex-direction: column; align-items: center; }
    .pricing-card { max-width: 100%; }
    .dashboard-stats { flex-direction: column; }
    .dashboard-stats .stat-card { min-width: 0; }
}

/* ========================================
   Header Navigation
   ======================================== */

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
}

.nav-link:hover {
    color: var(--text-white);
    background: var(--glass-bg);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.15rem;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s;
}

.nav-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.nav-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    transition: all 0.25s;
}

.nav-avatar:hover {
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}

/* Language selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-muted);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--text-white);
    border-color: rgba(255,255,255,0.3);
}

.lang-btn svg {
    opacity: 0.7;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 140px;
    background: var(--card-bg-solid);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 36px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 200;
    animation: fadeUp 0.2s ease;
}

.lang-dropdown.visible {
    display: block;
}

.lang-option {
    display: block;
    padding: 0.55rem 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.15s ease;
}

.lang-option:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-white);
}

.lang-option.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-user-menu {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: 240px;
    background: var(--card-bg-solid);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 200;
    animation: fadeUp 0.2s ease;
}

.nav-dropdown.visible {
    display: block;
}

.nav-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-dropdown-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-white);
}

.nav-dropdown-email {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.nav-dropdown-plan {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.15rem 0.55rem;
    background: rgba(232, 185, 49, 0.15);
    border: 1px solid rgba(232, 185, 49, 0.3);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.nav-dropdown-item:hover {
    background: var(--glass-bg);
    color: var(--text-white);
}

/* ========================================
   Auth Pages
   ======================================== */

.auth-card {
    width: 100%;
    max-width: 440px;
}

.auth-title {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-error {
    padding: 0.85rem 1rem;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: var(--radius-sm);
    color: var(--error);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.auth-success {
    padding: 0.85rem 1rem;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: var(--radius-sm);
    color: var(--success);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

/* ========================================
   Dashboard
   ======================================== */

.dashboard-container {
    width: 100%;
    max-width: 900px;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-greeting {
    font-family: 'Instrument Serif', serif;
    font-size: 2.25rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.dashboard-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.85rem;
    background: rgba(232, 185, 49, 0.12);
    border: 1px solid rgba(232, 185, 49, 0.25);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-plan-badge a {
    color: var(--accent);
    text-decoration: none;
}

.dashboard-plan-badge a:hover {
    text-decoration: underline;
}

.dashboard-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 160px;
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dashboard-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.45rem 1rem;
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}

.filter-tab:hover {
    color: var(--text-white);
    border-color: var(--glass-border);
}

.filter-tab.active {
    background: rgba(232, 185, 49, 0.15);
    border-color: rgba(232, 185, 49, 0.3);
    color: var(--accent);
}

.transfer-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.25s;
}

.transfer-card:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-bg-strong);
}

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

.transfer-card-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.transfer-card-meta {
    display: flex;
    gap: 0.85rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.transfer-card-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-active {
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.badge-expired {
    background: rgba(251, 191, 36, 0.15);
    color: var(--warning);
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.badge-deleted {
    background: rgba(248, 113, 113, 0.15);
    color: var(--error);
    border: 1px solid rgba(248, 113, 113, 0.25);
}

.badge-pending {
    background: var(--glass-bg);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-white);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-sm:hover {
    background: var(--glass-bg-strong);
    border-color: var(--glass-border-hover);
}

.btn-sm.btn-danger:hover {
    background: rgba(248, 113, 113, 0.15);
    border-color: rgba(248, 113, 113, 0.4);
    color: var(--error);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination a {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-light);
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pagination span.current {
    background: var(--accent);
    color: #000;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
}

.empty-state h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.empty-state p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   Pricing
   ======================================== */

.pricing-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-heading {
    font-family: 'Instrument Serif', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.pricing-subheading {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.pricing-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    animation: fadeUp 1s ease 0.4s both;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 60px var(--accent-glow), 0 24px 80px rgba(0,0,0,0.4);
    position: relative;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.pricing-name {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-period {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--success);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.toggle-label {
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--text-white);
    font-weight: 600;
}

.toggle-save {
    background: rgba(232, 185, 49, 0.15);
    color: var(--accent);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 600;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 13px;
    transition: all 0.3s;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--text-white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s, background 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: rgba(232, 185, 49, 0.3);
    border-color: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::after {
    transform: translateX(22px);
    background: var(--accent);
}

/* ========================================
   Account Page
   ======================================== */

.account-section {
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.account-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.account-section.danger {
    border-color: rgba(248, 113, 113, 0.25);
}

.account-section.danger .account-section-title {
    color: var(--error);
}

/* ========================================
   Scan Badge
   ======================================== */

.scan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.scan-badge.clean {
    background: rgba(52, 211, 153, 0.1);
    color: var(--success);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

/* ========================================
   Legal / Static Pages
   ======================================== */

.legal-card {
    width: 100%;
    max-width: 720px;
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2.75rem;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeUp 1s ease 0.4s both;
}

.legal-title {
    font-family: 'Instrument Serif', serif;
    font-size: 2.25rem;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.legal-updated {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-card h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-card h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.legal-card ul {
    list-style: none;
    margin: 0.5rem 0 1rem 0;
    padding: 0;
}

.legal-card ul li {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
}

.legal-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.legal-card a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.legal-card a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-card strong {
    color: var(--text-white);
    font-weight: 600;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: all 0.25s;
}

.contact-info-card:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-bg-strong);
}

.contact-info-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.contact-info-value {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 500;
}

.contact-info-value a {
    color: var(--accent);
    text-decoration: none;
}

.contact-info-value a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
    .legal-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-lg);
    }

    .legal-title {
        font-size: 1.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   GDPR Consent Banner
   ======================================== */

.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.5rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.gdpr-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.gdpr-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg-solid);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

.gdpr-text {
    flex: 1;
}

.gdpr-text strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.gdpr-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.gdpr-text a {
    color: var(--accent);
    text-decoration: none;
}

.gdpr-text a:hover {
    text-decoration: underline;
}

.gdpr-actions {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
}

.gdpr-btn {
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
}

.gdpr-accept {
    background: var(--accent);
    color: #000;
}

.gdpr-accept:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.gdpr-reject {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.gdpr-reject:hover {
    background: var(--glass-bg-strong);
    border-color: var(--glass-border-hover);
}

@media (max-width: 640px) {
    .gdpr-content {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .gdpr-actions {
        width: 100%;
    }

    .gdpr-btn {
        flex: 1;
    }
}

/* ========================================
   FAQ Page
   ======================================== */

.faq-list {
    margin-bottom: 0.5rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: all 0.25s;
}

.faq-item:hover {
    border-color: var(--glass-border);
}

.faq-item[open] {
    border-color: rgba(232, 185, 49, 0.25);
    background: rgba(232, 185, 49, 0.04);
}

.faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Use Cases
   ======================================== */

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    width: 100%;
    margin-top: 2rem;
    animation: fadeUp 1s ease 0.4s both;
}

.use-case-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s;
}

.use-case-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 185, 49, 0.12);
    border: 1px solid rgba(232, 185, 49, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1rem;
}

.use-case-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.use-case-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 0.2rem 0;
}

/* ========================================
   Blog
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    width: 100%;
    margin-top: 2rem;
    animation: fadeUp 1s ease 0.4s both;
}

.blog-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(232, 185, 49, 0.12);
    border: 1px solid rgba(232, 185, 49, 0.25);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-post-category {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: rgba(232, 185, 49, 0.12);
    border: 1px solid rgba(232, 185, 49, 0.25);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    text-align: center;
}

.blog-post-content {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

.blog-post-content h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post-content h2:first-child {
    margin-top: 0;
}

.blog-post-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.blog-post-content ul {
    list-style: none;
    margin: 0.5rem 0 1rem 0;
    padding: 0;
}

.blog-post-content ul li {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
}

.blog-post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.blog-post-content a {
    color: var(--accent);
    text-decoration: none;
}

.blog-post-content a:hover {
    text-decoration: underline;
}

.blog-post-content strong {
    color: var(--text-white);
    font-weight: 600;
}

/* ========================================
   Comparison Pages
   ======================================== */

.compare-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(232, 185, 49, 0.12);
    border: 1px solid rgba(232, 185, 49, 0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.compare-table-wrap {
    max-width: 800px;
    width: 100%;
    margin-top: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table thead {
    background: rgba(255, 255, 255, 0.04);
}

.compare-table th {
    padding: 1rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.compare-table th:first-child {
    text-align: left;
}

.compare-table th.compare-col-fd {
    color: var(--accent);
}

.compare-table td {
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-light);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-table td:first-child {
    text-align: left;
}

.compare-table td.compare-feature {
    font-weight: 500;
    color: var(--text-white);
}

.compare-table td.compare-winner {
    background: rgba(232, 185, 49, 0.06);
}

.compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.compare-table td svg {
    vertical-align: middle;
}

/* ========================================
   How-To CTA
   ======================================== */

.howto-cta {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(232, 185, 49, 0.06);
    border: 1px solid rgba(232, 185, 49, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.howto-cta h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.howto-cta p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.howto-cta .btn {
    display: inline-flex;
    max-width: 220px;
}

/* How-to tables */
.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.85rem;
}

.blog-post-content table th,
.blog-post-content table td {
    padding: 0.65rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-light);
}

.blog-post-content table th {
    font-weight: 600;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-post-content table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.blog-post-content ol {
    list-style: none;
    counter-reset: howto-steps;
    margin: 0.5rem 0 1rem 0;
    padding: 0;
}

.blog-post-content ol li {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0.25rem 0 0.25rem 2rem;
    position: relative;
    counter-increment: howto-steps;
}

.blog-post-content ol li::before {
    content: counter(howto-steps);
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(232, 185, 49, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

/* ========================================
   About Page
   ======================================== */

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    width: 100%;
    margin-top: 2rem;
    animation: fadeUp 1s ease 0.4s both;
}

.about-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s;
}

.about-card:hover {
    border-color: rgba(232, 185, 49, 0.3);
    transform: translateY(-2px);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 185, 49, 0.12);
    border: 1px solid rgba(232, 185, 49, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.about-card-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-values {
    max-width: 800px;
    width: 100%;
    margin-top: 3rem;
    text-align: center;
}

.about-values-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.about-value {
    padding: 1.25rem;
    border-left: 2px solid var(--accent);
}

.about-value h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.35rem;
}

.about-value p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 640px) {
    .use-cases-grid,
    .blog-grid,
    .about-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .compare-table th,
    .compare-table td {
        padding: 0.65rem 0.75rem;
        font-size: 0.78rem;
    }

    .compare-badge {
        font-size: 0.72rem;
    }
}
