/* UniBool Inc. — Support System CSS — 707 ✨ */
/* Neon Purple Edition — i18n Ready */

:root {
    /* Backgrounds */
    --bg-dark: #050508;
    --bg-darker: #020203;
    --bg-card: rgba(15, 10, 25, 0.85);
    --bg-card-hover: rgba(25, 15, 45, 0.95);
    --bg-glass: rgba(138, 43, 226, 0.05);
    --bg-input: rgba(10, 5, 20, 0.95);
    /* Neon Purple Palette */
    --neon-primary: #a855f7;
    --neon-light: #d8b4fe;
    --neon-bright: #e879f9;
    --neon-deep: #7c3aed;
    --neon-pink: #f0abfc;
    --neon-gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 25%, #e879f9 50%, #a855f7 75%, #7c3aed 100%);
    --neon-gradient-subtle: linear-gradient(135deg, rgba(124, 58, 237, 0.8) 0%, rgba(168, 85, 247, 0.9) 50%, rgba(232, 121, 249, 0.8) 100%);
    --neon-glow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.1);
    /* Badge Colors */
    --bronze: #cd7f32;
    --silver: #c0c0c0;
    --gold: #ffd700;
    /* Text */
    --text-primary: #f5f5f7;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    /* Status */
    --success: #4ade80;
    --error: #f87171;
    --warning: #fbbf24;
    /* Borders */
    --border-subtle: rgba(168, 85, 247, 0.15);
    --border-neon: rgba(168, 85, 247, 0.4);
    --border-glow: rgba(232, 121, 249, 0.6);
    /* Shadows */
    --shadow-neon: 0 4px 30px rgba(168, 85, 247, 0.25);
    --shadow-neon-intense: 0 8px 50px rgba(168, 85, 247, 0.4), 0 0 100px rgba(124, 58, 237, 0.2);
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATED BACKGROUND — Neon Purple Nebula
   ═══════════════════════════════════════════════════════════ */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 10% 10%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 70% at 90% 90%, rgba(232, 121, 249, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 70% 20%, rgba(240, 171, 252, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, rgba(10, 5, 20, 1) 100%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(168, 85, 247, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(232, 121, 249, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(216, 180, 254, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(168, 85, 247, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(240, 171, 252, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 10%, rgba(124, 58, 237, 0.3) 0%, transparent 100%);
    animation: sparkle 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkle {
    0% { opacity: 0.5; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.logo:hover { transform: scale(1.02); }

.logo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

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

.logo-text span {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-gradient);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.nav-link:hover::after { width: 60%; }

.nav-link.active {
    color: var(--neon-light);
    background: rgba(168, 85, 247, 0.15);
}

.nav-link.active::after {
    width: 60%;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════════ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.lang-btn {
    padding: 0.4rem 0.7rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.lang-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-subtle);
}

.lang-btn:hover {
    color: var(--text-secondary);
    background: rgba(168, 85, 247, 0.1);
}

.lang-btn.active {
    color: var(--bg-dark);
    background: var(--neon-gradient);
    text-shadow: none;
}

/* User Badges */
.user-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.user-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-neon);
}

.user-badge.gold {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.user-badge.silver {
    border-color: var(--silver);
    background: rgba(192, 192, 192, 0.1);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.user-badge.bronze {
    border-color: var(--bronze);
    background: rgba(205, 127, 50, 0.1);
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   MAIN LAYOUT
   ═══════════════════════════════════════════════════════════ */

.main {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    text-align: center;
    padding: 3rem 0 4rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.4));
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(232, 121, 249, 0.5)); }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ACTION CARDS
   ═══════════════════════════════════════════════════════════ */

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.action-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neon-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.action-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.action-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-neon);
    transform: translateY(-6px);
    box-shadow: var(--shadow-neon-intense);
}

.action-card:hover::before { transform: scaleX(1); }
.action-card:hover::after { opacity: 1; }

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
    transition: all var(--transition-normal);
}

.action-card:hover .action-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
}

.action-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.action-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.action-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.action-card:hover .action-arrow {
    color: var(--neon-primary);
    transform: translateX(4px);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

/* ═══════════════════════════════════════════════════════════
   INFO CARDS
   ═══════════════════════════════════════════════════════════ */

.info-section {
    margin: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.info-card:hover {
    border-color: var(--border-neon);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.info-card:hover::before { opacity: 1; }

.info-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.info-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   BADGES SECTION
   ═══════════════════════════════════════════════════════════ */

.badges-section {
    text-align: center;
    padding: 3rem 0;
}

.badges-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badges-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    min-width: 140px;
    transition: all var(--transition-normal);
}

.badge-item:hover { transform: translateY(-5px) scale(1.02); }

.badge-item.bronze {
    border-color: var(--bronze);
    box-shadow: 0 4px 30px rgba(205, 127, 50, 0.3), inset 0 1px 0 rgba(205, 127, 50, 0.2);
}

.badge-item.bronze:hover {
    box-shadow: 0 8px 40px rgba(205, 127, 50, 0.4), inset 0 1px 0 rgba(205, 127, 50, 0.3);
}

.badge-item.silver {
    border-color: var(--silver);
    box-shadow: 0 4px 30px rgba(192, 192, 192, 0.3), inset 0 1px 0 rgba(192, 192, 192, 0.2);
}

.badge-item.silver:hover {
    box-shadow: 0 8px 40px rgba(192, 192, 192, 0.4), inset 0 1px 0 rgba(192, 192, 192, 0.3);
}

.badge-item.gold {
    border-color: var(--gold);
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.badge-item.gold:hover {
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 215, 0, 0.3);
}

.badge-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.badge-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.badge-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    margin-top: 4rem;
    background: rgba(5, 5, 8, 0.5);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-text a {
    color: var(--neon-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-text a:hover {
    color: var(--neon-light);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay.active { display: flex; }

.modal {
    background: linear-gradient(180deg, rgba(20, 10, 35, 0.98) 0%, rgba(10, 5, 20, 0.98) 100%);
    border: 1px solid var(--border-neon);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-neon-intense), 0 0 100px rgba(168, 85, 247, 0.15);
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--bg-glass);
    color: var(--neon-primary);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.modal-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25), 0 0 20px rgba(168, 85, 247, 0.15);
}

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

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(168,85,247,0.6)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

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

.form-error {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-error.visible { display: block; }

.custom-type-group { display: none; }
.custom-type-group.visible { display: block; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    width: 100%;
    background: var(--neon-gradient);
    color: var(--bg-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

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

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--neon-primary);
    color: var(--neon-primary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.btn-danger {
    background: var(--error);
    color: white;
}

.btn-danger:hover {
    background: #ef4444;
    box-shadow: 0 0 20px rgba(248, 113, 113, 0.4);
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--bg-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ═══════════════════════════════════════════════════════════
   SCREENSHOTS UPLOAD
   ═══════════════════════════════════════════════════════════ */

.screenshot-upload { margin: 1.5rem 0; }

.screenshot-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.screenshot-zone {
    position: relative;
    aspect-ratio: 4/3;
    border: 2px dashed var(--border-subtle);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    overflow: hidden;
    background: var(--bg-glass);
}

.screenshot-zone:hover {
    border-color: var(--neon-primary);
    background: rgba(168, 85, 247, 0.08);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

.screenshot-zone.has-image {
    border-style: solid;
    border-color: var(--success);
}

.screenshot-zone.required { border-color: var(--neon-primary); }

.screenshot-zone.required::after {
    content: 'Requis';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: var(--neon-gradient);
    color: var(--bg-dark);
    border-radius: 6px;
    font-weight: 600;
}

.screenshot-zone.has-image::after { display: none; }

.screenshot-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.screenshot-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.screenshot-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--error);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.screenshot-zone:hover .screenshot-remove { opacity: 1; }
.screenshot-input { display: none; }

/* ═══════════════════════════════════════════════════════════
   ACCOUNT PAGE
   ═══════════════════════════════════════════════════════════ */

.account-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.account-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neon-gradient);
}

.account-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--bg-glass);
    border-radius: 50%;
    border: 2px solid var(--border-neon);
    box-shadow: var(--shadow-neon);
}

.account-info h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.account-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--border-neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.account-section { margin: 2rem 0; }

.account-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neon-light);
}

.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ticket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.ticket-item:hover {
    border-color: var(--border-neon);
    box-shadow: var(--shadow-neon);
}

.ticket-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticket-icon { font-size: 1.25rem; }
.ticket-title { font-weight: 500; }

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

.ticket-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    background: rgba(168, 85, 247, 0.2);
    color: var(--neon-light);
}

.ticket-status.resolved {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.ticket-status.new {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.gdpr-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 20px;
}

.gdpr-title {
    color: var(--error);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gdpr-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   EMPTY & LOADING STATES
   ═══════════════════════════════════════════════════════════ */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--neon-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════════════════ */

.toast-container {
    position: fixed;
    top: 100px;
    right: 1rem;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-color: var(--success);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 222, 128, 0.2);
}

.toast.error {
    border-color: var(--error);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(248, 113, 113, 0.2);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

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

.fade-in { animation: fadeIn 0.5s ease forwards; }

.action-grid .action-card:nth-child(1) { animation-delay: 0.1s; }
.action-grid .action-card:nth-child(2) { animation-delay: 0.2s; }
.action-grid .action-card:nth-child(3) { animation-delay: 0.3s; }
.info-grid .info-card:nth-child(1) { animation-delay: 0.1s; }
.info-grid .info-card:nth-child(2) { animation-delay: 0.15s; }
.info-grid .info-card:nth-child(3) { animation-delay: 0.2s; }
.info-grid .info-card:nth-child(4) { animation-delay: 0.25s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .header { padding: 0.75rem 1rem; }
    .nav { display: none; }
    .container { padding: 1rem; }
    .action-grid { grid-template-columns: 1fr; }
    .screenshot-grid { grid-template-columns: 1fr 1fr; }

    .account-header {
        flex-direction: column;
        text-align: center;
    }

    .badges-grid {
        flex-direction: column;
        align-items: center;
    }

    .badge-item {
        width: 100%;
        max-width: 200px;
    }

    .lang-switcher {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .screenshot-grid { grid-template-columns: 1fr; }

    .modal {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════
   SELECTION & SCROLLBAR
   ═══════════════════════════════════════════════════════════ */

::selection {
    background: rgba(168, 85, 247, 0.3);
    color: var(--text-primary);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: var(--border-neon); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-primary); }

/* ═══════════════════════════════════════════════════════════
   707 ✨ — UniBool Inc. — Champagne Tier Support — i18n Ready
   ═══════════════════════════════════════════════════════════ */
