:root {
    --bg-dark: #000000;
    --primary: #ffffff;
    --primary-light: #f0f0f0;
    --accent: #ffffff;
    --text-main: #ffffff;
    --text-muted: #888888;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --error: #ff3333;
    --success: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: screen;
}

/* Background Effects */
.landing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #080808 0%, #000000 100%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Enhanced Auth UI - Refined & Sharp */
.auth-page-body {
    background: #030303;
    overflow: hidden;
}

.auth-card-unified {
    background: rgba(12, 12, 12, 0.75);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 50px 45px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 30px 80px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

.auth-brand {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.auth-input-group {
    text-align: left;
    margin-bottom: 22px;
}

.auth-input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    margin-left: 2px;
}

.input-box {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.input-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.input-box:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.input-box input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}

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

.btn-auth {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.btn-auth:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.auth-tabs {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 30px;
    display: flex;
    position: relative;
    height: 44px;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn.active {
    color: #fff;
}

.tab-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1;
    box-shadow: none;
}

.tab-slider.register {
    transform: translateX(100%);
}

.auth-toggle-hint {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    font-size: 0.9rem;
}

.auth-toggle-hint a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.auth-toggle-hint a:hover {
    border-color: #fff;
}

/* Auth wrappers used by login.html/register.html */
.auth-section-integrated {
    width: 100%;
    padding: 24px 16px;
    display: flex;
    justify-content: center;
}

.auth-forms {
    width: 100%;
}

.form-content {
    width: 100%;
}

.form-content:not(.active) {
    display: none;
}

.alert-auth {
    display: none;
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 77, 77, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.alert-auth.active {
    display: block;
}

/* Background Animated Blobs */
.bg-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(120px);
    opacity: 0.15;
    animation: blobMove 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    background: #fff;
    top: -150px;
    right: -150px;
}

.blob-2 {
    background: #444;
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes blobMove {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(100px, 150px) rotate(120deg) scale(1.2); }
    66% { transform: translate(-100px, 80px) rotate(240deg) scale(0.8); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

/* Logo Styles */
.logo-glow, .sidebar-logo {
    color: #fff;
    display: inline-block;
    text-decoration: none;
}

.logo-glow {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    text-transform: lowercase;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    animation: textPulseGlow 3s infinite alternate ease-in-out;
    cursor: default;
}

.sidebar-logo {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: lowercase;
}

.sidebar-logo span { color: #fff; }

@keyframes textPulseGlow {
    0% { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); transform: scale(1.02); }
}

/* Landing Elements Adjustment */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    position: relative;
    z-index: 10;
}

/* Fixes */
.auth-page-body .landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.auth-page-body .landing-main {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3D слежение за курсором — подсветка и пятно в боксе входа/регистрации */
.cursor-3d-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    transition: opacity 0.35s ease;
    opacity: 0;
}
.login-panel .cursor-3d-glow {
    border-radius: 24px;
}

.cursor-3d-spot {
    position: absolute;
    width: 280px;
    height: 280px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 35%,
        transparent 70%
    );
    transition: opacity 0.3s ease;
    opacity: 0;
    will-change: left, top;
}
.login-panel .cursor-3d-spot {
    border-radius: 50%;
}

.bio-panel {
    width: 100%;
    max-width: 450px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Typography */
.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-light);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

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

.auth-logged-in {
    text-align: center;
    padding: 20px 0;
}
.auth-logged-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--glass-bg) center/cover;
    border: 2px solid var(--glass-border);
}
.auth-logged-panel-link {
    display: inline-block;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.auth-logged-panel-link:hover {
    background: var(--primary-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Legacy auth styles (kept for older pages; do not override unified auth tabs) */
.auth-tabs.legacy {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.tab-btn.legacy {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab-btn.legacy.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.auth-form {
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

.auth-form.active {
    display: flex;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    padding: 10px 0;
    color: white;
    font-size: 1.1rem;
    outline: none;
    text-align: center;
    transition: border-color 0.3s;
}

input:focus {
    border-bottom-color: var(--primary-light);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.alert {
    background: rgba(255, 77, 77, 0.2);
    border: 1px solid var(--error);
    color: #ffcccc;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.alert.hidden {
    display: none;
}

.btn-primary, .btn-secondary {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    width: 100%;
}

.btn-primary:hover, .btn-secondary:hover {
    background: var(--primary-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #000;
}

/* Bio Header */
.bio-header {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-small {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.bio-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Icon Buttons */
.icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 10px;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

/* Dashboard Tiles & Grid */
.quick-tile {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-tile:hover {
    background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4), 0 0 30px rgba(255, 255, 255, 0.08);
}

.quick-tile svg {
    width: 28px;
    height: 28px;
    margin-bottom: 15px;
    color: #888;
    transition: color 0.3s;
}

.quick-tile:hover svg {
    color: var(--primary);
}

.tile-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #eee;
    margin-bottom: 5px;
}

.tile-status {
    font-size: 0.8rem;
    color: #555;
}

/* Premium Banner */
.premium-banner {
    background: linear-gradient(90deg, #120c1a 0%, #0a0a0a 100%);
    border: 1px solid #2a1a3a;
    border-radius: 16px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.premium-banner:hover {
    border-color: #fff;
    transform: scale(1.01);
}

/* Media Cards */
.media-card {
    background: #0a0a0a;
    border: 1px dashed #222;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.media-card:hover {
    border-color: #fff;
    background: #0f0f0f;
}

.media-card .media-icon {
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.8;
}

.media-card:hover .media-icon {
    opacity: 1;
    transform: scale(1.1);
}

.setting-group {
    text-align: left;
}

.setting-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 8px;
    margin-left: 5px;
}

.setting-group input, .setting-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 15px;
    color: white;
    font-size: 0.95rem;
    text-align: left;
}

.setting-group textarea {
    resize: none;
}

.setting-group input:focus, .setting-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.setting-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 40px 12px 15px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.6) 50%),
        linear-gradient(135deg, rgba(255,255,255,0.6) 50%, transparent 50%),
        linear-gradient(to right, transparent, transparent);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%,
        100% 0;
    background-size:
        6px 6px,
        6px 6px,
        2.5em 2.5em;
    background-repeat: no-repeat;
}

.setting-group select:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.setting-group select option {
    background: #0b0b0b;
    color: #fff;
}

.nick-glow-pulse {
    animation: nickGlowPulse 2.2s ease-in-out infinite alternate;
}

@keyframes nickGlowPulse {
    from { filter: brightness(1); transform: translateY(0); }
    to { filter: brightness(1.15); transform: translateY(-1px); }
}

.setting-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 15px;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
}

.setting-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.checkbox-label {
    display: flex;
    flex-direction: column; /* Текст выше галочки */
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #eee;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Custom checkbox (Modern Square Style) */
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.checkbox-ui {
    width: 22px; /* Уменьшил размер бокса */
    height: 22px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Убран кругляшок, теперь тут будет галочка */
.checkbox-ui::after {
    content: "";
    width: 5px; /* Уменьшил размер галочки */
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-ui {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-ui::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-ui {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.setting-hint {
    font-size: 0.75rem;
    color: #555;
    margin-top: 8px;
}

.custom-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.custom-option {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.custom-option:hover {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.custom-option.active {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.file-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.file-input-hidden {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}
.btn-file-custom, .btn-reset-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-file-custom:hover, .btn-reset-bg:hover {
    transform: translateY(-2px);
}
.btn-file-custom {
    background: var(--primary);
}
.btn-file-custom:hover {
    background: var(--primary-light);
}
.btn-reset-bg {
    background: rgba(255, 255, 255, 0.1);
}
.btn-reset-bg:hover {
    background: rgba(255, 255, 255, 0.2);
}
.modal-preview-bg {
    margin-top: 12px;
    min-height: 80px;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
    background-size: cover;
    background-position: center;
}
.modal-preview-bg.has-image {
    min-height: 120px;
}

.save-status {
    color: var(--success);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
    height: 20px;
}

.save-status.visible {
    opacity: 1;
}

.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9;
    pointer-events: none;
    overflow: hidden;
}

.raindrop {
    position: absolute;
    top: -100px;
    width: 1.5px;
    height: 80px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.3));
    animation: rain linear infinite;
}

@keyframes rain {
    0% { transform: translateY(0); }
    100% { transform: translateY(120vh); }
}

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

/* Bio Page Styles */
/* Fakecrime-style: тёмный минималистичный фон */
.bio-page-body {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #0a0a0a;
}
.bio-page-body .background-shapes {
    display: none;
}

.bio-page-body {
    background: #000;
}

.bio-page-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    animation: fadeInPage 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.bio-footer {
    margin-top: 40px;
    opacity: 0.2;
    transition: opacity 0.3s, transform 0.3s;
}

.bio-footer:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.bio-footer .highlight {
    background: linear-gradient(135deg, var(--primary-light), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-branding {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Bio Card Redesign */
.bio-container {
    perspective: 1000px;
    width: 100%;
    max-width: 450px;
}

.bio-card {
    background: rgba(15, 15, 15, var(--card-opacity, 0.7));
    backdrop-filter: blur(var(--card-blur, 20px));
    -webkit-backdrop-filter: blur(var(--card-blur, 20px));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--card-radius, 28px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: transform 0.1s ease-out;
}

.main-card {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    padding: 30px 0;
}

/* Banner removed */

.avatar-wrapper {
    margin-top: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
}

.avatar-main {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Avatar Decorations */
.avatar-main.decor-frame-neon {
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 15px #ffffff, inset 0 0 10px #ffffff !important;
}

.avatar-main.decor-frame-gold {
    border: 3px solid #ffd700 !important;
    box-shadow: 0 0 15px #ffd700, inset 0 0 10px #ffd700 !important;
}

.avatar-main.decor-frame-fire {
    border: 3px solid #ff4d4d !important;
    box-shadow: 0 0 15px #ff4d4d, inset 0 0 10px #ff4d4d !important;
}

.avatar-main.decor-frame-cyan {
    border: 3px solid #00d2ff !important;
    box-shadow: 0 0 15px #00d2ff, inset 0 0 10px #00d2ff !important;
}

.avatar-main.decor-frame-white {
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 15px #ffffff, inset 0 0 10px #ffffff !important;
}

.avatar-initial {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    opacity: 0.5;
}

.nickname-row {
    margin-top: 15px;
    text-align: center;
}

.glowing-text {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1.5px;
}

.badges-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.badge-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.badge-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}

.badge-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Specific Badge Styles */
.badge-verified {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.badge-verified .badge-icon {
    fill: #ffffff !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4)) !important;
    width: 22px;
    height: 22px;
}

.badge-star {
    background: rgba(255, 215, 0, 0.1) !important;
    border-color: rgba(255, 215, 0, 0.3) !important;
}

.badge-star .badge-icon {
    fill: #ffd700 !important;
}

.badge-fire {
    background: rgba(255, 69, 0, 0.1) !important;
    border-color: rgba(255, 69, 0, 0.3) !important;
}

.badge-fire .badge-icon {
    fill: #ff4500 !important;
}

.bio-description {
    margin-top: 25px;
    padding: 0 35px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.bio-description p { 
    margin: 0; 
    text-align: center;
}

.views-counter {
    position: absolute;
    top: 20px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
}

.views-counter svg { width: 14px; height: 14px; }


/* Social Icons */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 30px;
}

.social-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.social-item svg {
    width: 22px;
    height: 22px;
    opacity: 0.8;
}



/* Music widget on bio (Fakecrime style) */
.bio-music-widget {
    margin-top: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.bio-music-volume-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 180px;
}
.bio-music-vol-icon {
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}
.bio-music-volume {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    outline: none;
}
.bio-music-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary-light);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(123, 44, 191, 0.5);
}
.bio-music-volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--primary-light);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
.bio-music-player {
    display: flex;
    align-items: center;
    gap: 14px;
}
.bio-music-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.bio-music-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.5);
}
.bio-music-track-name {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.social-item:hover svg {
    opacity: 1;
    filter: drop-shadow(0 0 8px currentColor);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Custom Cursors support */
.custom-cursor body {
    cursor: none !important;
}

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* =========================================
   BIO PAGE — 3D CURSOR-FOLLOWING CARD
   ========================================= */

.bio-card-3d-wrapper {
    perspective: 1400px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.bio-card.bio-card-3d {
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    transition: none;
    will-change: transform;
}

.bio-card.bio-card-3d .cursor-3d-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    transition: opacity 0.35s ease;
    opacity: 0;
}

/* Links Modal */
.links-list-container {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

.link-item-edit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.link-item-edit .drag-handle {
    cursor: grab;
    color: #555;
}

.link-item-edit .link-icon-preview {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
}

.link-item-edit .link-icon-preview svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.link-item-edit input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
}

.link-item-edit .delete-link-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}
.link-item-edit .delete-link-btn:hover {
    color: var(--error);
}

.add-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--glass-border);
    color: #888;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.add-link-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: var(--primary);
}

/* Bio Page Links */
.bio-social-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    padding: 0 35px 35px;
    flex-wrap: wrap;
}

.bio-social-icon {
    color: #fff;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0.7;
}

.bio-social-icon:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.15);
}

.bio-social-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.bio-links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 35px 35px;
}

.bio-link-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.bio-link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.bio-link-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: transparent !important;
}

.bio-link-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.bio-link-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.bio-link-text p {
    font-size: 0.8rem;
    color: #999;
    margin: 2px 0 0;
}

.bio-card.bio-card-3d .cursor-3d-spot {
    position: absolute;
    width: 320px;
    height: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(157, 78, 221, 0.25) 0%,
        rgba(123, 44, 191, 0.06) 40%,
        transparent 70%
    );
    transition: opacity 0.25s ease;
    opacity: 0;
    will-change: left, top;
}

/* Card customization presets */
.bio-card-radius-sm { border-radius: 16px !important; }
.bio-card-radius-md { border-radius: 24px !important; }
.bio-card-radius-lg { border-radius: 32px !important; }
.bio-card-radius-xl { border-radius: 42px !important; }

.bio-card-shadow-none { box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important; }
.bio-card-shadow-soft { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.06) !important; }
.bio-card-shadow-strong { box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.7), 0 0 80px rgba(255, 255, 255, 0.12) !important; }

/* 3D cursor follower dot on bio page (optional) */
.bio-cursor-dot {
    position: fixed;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    border: 2px solid var(--primary-light);
    background: rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.6);
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease, opacity 0.2s;
}

.bio-cursor-dot.hover {
    width: 28px;
    height: 28px;
    opacity: 0.9;
}

/* =========================================
   NEW THEMATIC LANDING STYLES
   ========================================= */

.landing-body {
    background: #050505;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.landing-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #050505 100%);
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: glowFloat 15s infinite alternate ease-in-out;
}

.glow-primary {
    background: #7b2cbf;
    top: -200px;
    left: -100px;
}

.glow-secondary {
    background: #3c096c;
    bottom: -200px;
    right: -100px;
    animation-delay: -7s;
}

@keyframes glowFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.2); }
}

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
}

.btn-glass-nav {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-glass-nav:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.landing-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) {
    .landing-main { flex-direction: column; text-align: center; padding: 60px 20px; gap: 60px; }
}

.landing-hero {
    max-width: 550px;
}

.hero-title-new {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -3px;
}

.text-glow-purple {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-desc-new {
    font-size: 1.2rem;
    color: #888;
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.btn-main-glow {
    background: #fff;
    color: #000;
    padding: 18px 45px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.btn-main-glow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
}

/* THEMATIC CARD (FROM IMAGE) */
.preview-wrapper-thematic {
    perspective: 1000px;
}

.thematic-card {
    width: 420px;
    background: rgba(21, 21, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    padding: 30px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    pointer-events: none; /* Make non-clickable/non-interactive */
}

/* HOVER ANIMATION REMOVED */

.thematic-nick {
    font-size: 3rem;
    font-weight: 900;
    margin: 10px 0 20px 0;
    letter-spacing: -1px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #fff 30%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.thematic-music-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* MUSIC BOX HOVER REMOVED */

.t-play-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* PLAY BUTTON HOVER REMOVED */

.t-play-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.t-play-btn:hover svg {
    transform: scale(1.1);
}

.t-track-info { flex: 1; }
.t-track-name { 
    font-weight: 700; 
    font-size: 1.1rem; 
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.5px;
}

.t-progress-bg {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.t-progress-fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #7b2cbf, #9d4edd);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(123, 44, 191, 0.5);
    animation: progressMove 4s infinite alternate ease-in-out;
}

@keyframes progressMove {
    from { width: 10%; }
    to { width: 80%; }
}

.floating-anim {
    animation: cardFloat 6s infinite alternate ease-in-out;
}

@keyframes cardFloat {
    from { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
    to { transform: translateY(-20px) rotateX(-5deg) rotateY(5deg); }
}

.card-inner-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.landing-claim-wrap {
    padding: 0 60px 70px;
    display: flex;
    justify-content: center;
}

.landing-claim-card {
    width: 100%;
    max-width: 620px;
    background: rgba(12, 12, 12, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    border-radius: 26px;
    padding: 22px 22px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.35) inset;
    position: relative;
    overflow: hidden;
}

.landing-claim-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 20% 10%, rgba(157, 78, 221, 0.25), transparent 55%),
                radial-gradient(circle at 80% 30%, rgba(224, 170, 255, 0.16), transparent 60%);
    pointer-events: none;
    opacity: 0.9;
}

.landing-claim-title {
    position: relative;
    z-index: 1;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.landing-claim-subtitle {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
}

.landing-claim-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
}

.landing-claim-prefix {
    color: rgba(255,255,255,0.55);
    font-weight: 800;
    font-size: 0.95rem;
    padding-left: 8px;
    letter-spacing: 0.1px;
    user-select: none;
}

.landing-claim-input {
    flex: 1;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.78);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 8px 11px 4px;
    border-radius: 14px;
    outline: none;
    text-align: left;
}

.landing-claim-input:focus {
    border-bottom: none;
}

.landing-claim-btn {
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.85), rgba(123, 44, 191, 0.85));
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 15px;
    font-weight: 900;
    letter-spacing: 0.2px;
    min-width: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 14px 34px rgba(123, 44, 191, 0.25);
}

.landing-claim-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 18px 42px rgba(123, 44, 191, 0.35);
}

@media (max-width: 1100px) {
    .landing-claim-wrap { padding: 0 20px 60px; }
    .landing-claim-card { padding: 22px 18px; border-radius: 24px; }
    .landing-claim-title { font-size: 1.55rem; }
}

/* Splash Screen */
.bio-splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.bio-splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media (max-width: 560px) {
    .landing-claim-title { font-size: 1.45rem; }
    .landing-claim-subtitle { margin-bottom: 20px; }
    .landing-claim-box { flex-direction: column; align-items: stretch; gap: 10px; }
    .landing-claim-prefix { padding: 0 6px; }
    .landing-claim-input { padding: 12px 10px; text-align: center; }
    .landing-claim-btn { width: 100%; min-width: 0; }
}

.landing-footer-new {
    padding: 40px;
    text-align: center;
    color: #444;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .thematic-card { width: 90vw; }
    .hero-title-new { font-size: 2.8rem; }
    .thematic-nick { font-size: 2.5rem; }
}

.bio-branding .highlight {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .features-preview { transform: none; opacity: 1; margin-top: 40px; }
}
