/* ==============================================
   GLASSMORPHISM ДИЗАЙН - НОВАЯ ВЕРСИЯ 3.5
   ============================================== */

/* Базовый сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Главный контейнер */
.app-container {
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Анимированный фон */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, rgba(255, 0, 255, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 60%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { left: 80%; animation-delay: 8s; animation-duration: 24s; }
.particle:nth-child(6) { left: 90%; animation-delay: 10s; animation-duration: 19s; }

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.neon-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s infinite linear;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Секции страниц */
.page-section {
    display: none;
    padding: 0;
    padding-bottom: 100px;
    min-height: 100vh;
    position: relative;
}

.page-section.active {
    display: block;
}

/* Стеклянный хедер */
.glass-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(20, 20, 30, 0.9) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding: 15px;
    margin: 0 -20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 10vh;
    display: flex;
    align-items: center;
}

.glass-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 255, 0.03) 50%,
        transparent 100%
    );
}

@keyframes headerShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
}

.brand-section {
    flex: 1;
}

.neon-logo {
    position: relative;
    display: inline-block;
    padding: 8px 0;
}

.logo-glow {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(
        45deg, 
        rgba(0, 255, 255, 0.3),
        rgba(255, 0, 255, 0.3)
    );
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    filter: blur(6px);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.logo-text .highlight {
    background: linear-gradient(
        45deg, 
        #00ffff,
        #ff00ff,
        #00ffff,
        #ffff00
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.credits-display {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.credits-display-compact {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    scale: 0.85;
}

.credits-glow {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(
        45deg, 
        rgba(59, 130, 246, 0.4),
        rgba(139, 92, 246, 0.4),
        rgba(124, 58, 237, 0.4)
    );
    border-radius: 22px;
    opacity: 0;
    transition: all 0.4s ease;
    filter: blur(6px);
}

@keyframes creditsGlow {
    0% { 
        opacity: 0.2;
        transform: scale(0.95);
        filter: blur(4px);
    }
    100% { 
        opacity: 0.5;
        transform: scale(1.05);
        filter: blur(8px);
    }
}

.credits-display:hover .credits-glow,
.credits-display-compact:hover .credits-glow {
    opacity: 1;
    transform: scale(1.2);
    filter: blur(10px);
}

.credits-display:hover,
.credits-display-compact:hover {
    transform: translateY(-2px);
}

.credits-info {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(59, 130, 246, 0.12) 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 18px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.credits-display:hover .credits-info,
.credits-display-compact:hover .credits-info {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(139, 92, 246, 0.18) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.credits-icon {
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.8));
}

@keyframes gemSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-5deg); }
}

.credits-value {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    text-shadow: 
        0 0 8px rgba(99, 102, 241, 0.8),
        0 0 16px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.credits-display:hover .credits-value,
.credits-display-compact:hover .credits-value {
    text-shadow: 
        0 0 12px rgba(99, 102, 241, 1.0),
        0 0 24px rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
}

/* Главная секция */
.main-section {
    padding: 20px;
    padding-bottom: 100px;
}

/* Приветственный стеклянный блок */
.welcome-glass {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
}

.welcome-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(0, 255, 255, 0.05) 50%, 
        transparent 70%);
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.welcome-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.greeting-section {
    text-align: center;
    margin-bottom: 20px;
}

.greeting-text {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.user-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.name-text {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.05));
}

.wave-emoji {
    font-size: 32px;
    animation: wave 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.35));
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

.subtitle-glass {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}



/* Секция действий */
.action-section {
    margin-bottom: 30px;
}

.section-title-neon {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.title-glow {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

@keyframes titleGlow {
    0% { opacity: 0.3; width: 60px; }
    100% { opacity: 1; width: 100px; }
}

.neon-grid-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.neon-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-bg-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.neon-card.primary .card-bg-glow {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.6), rgba(255, 0, 255, 0.6));
}

.neon-card.secondary .card-bg-glow {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.6), rgba(255, 215, 0, 0.6));
}

.neon-card.accent .card-bg-glow {
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.6), rgba(255, 20, 147, 0.6));
}

.neon-card:hover .card-bg-glow {
    opacity: 1;
}

.neon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.popularity-badge {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.8), rgba(255, 105, 180, 0.8));
    color: #000;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.card-text-content {
    flex: 1;
}

.card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.card-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.4;
}

.action-arrow {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.neon-card:hover .action-arrow {
    color: #ffffff;
    transform: translateX(5px);
}

/* Профиль в стеклянном блоке */
.profile-glass-section {
    margin-bottom: 30px;
}

.profile-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 25px;
    overflow: hidden;
}

.profile-bg-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.3), rgba(138, 43, 226, 0.3));
    border-radius: 27px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.profile-glass-card:hover .profile-bg-glow {
    opacity: 1;
}

.profile-content {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.photo-area {
    flex-shrink: 0;
}

.photo-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.photo-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.6), rgba(255, 0, 255, 0.6));
    background-clip: border-box;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.photo-placeholder {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-placeholder:hover {
    transform: scale(1.05);
}

/* Отключение интерактивности фото на главной странице */
.home-photo-display {
    cursor: default !important;
}

.home-photo-display .photo-container,
.home-photo-display .photo-inner,
.home-photo-display .photo-placeholder {
    cursor: default !important;
}

.home-photo-display:hover {
    transform: none !important;
    box-shadow: none !important;
}

.home-photo-display .photo-placeholder:hover {
    transform: none !important;
    box-shadow: none !important;
}

.upload-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.photo-placeholder p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-of-type {
    border-bottom: none;
}

.info-key {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.neon-btn-small {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.6), rgba(255, 0, 255, 0.6));
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.neon-btn-small:hover .btn-glow {
    opacity: 1;
}

.neon-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Неоновая галерея */
.gallery-neon-section {
    margin-bottom: 15px;
}

.section-title-neon.centered {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-action-center {
    text-align: center;
    margin-bottom: 25px;
}

.view-all-neon {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-neon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.neon-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.item-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.4), rgba(255, 20, 147, 0.4));
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gallery-item:hover .item-glow {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.item-emoji {
    font-size: 24px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.item-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Хедер страниц */
.page-header-glass {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 10vh;
}



.page-title-neon {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    position: relative;
    text-align: center;
}

/* Фильтры гардероба */
.filters-glass {
    margin: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
}

.filter-tabs-neon {
    display: flex;
    gap: 6px;
    padding: 0;
    justify-content: space-between;
}

.filter-tab-neon {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 8px 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    flex: 1;
    text-align: center;
}

.tab-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.6), rgba(255, 0, 255, 0.6));
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.filter-tab-neon.active .tab-glow,
.filter-tab-neon:hover .tab-glow {
    opacity: 1;
}

.filter-tab-neon.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Сетка генераций */
.generations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
}

.generation-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.generation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.generation-card:hover .card-bg-glow {
    opacity: 1;
}

.generation-image {
    position: relative;
    height: 120px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px 15px 0 0;
}

.placeholder-icon {
    font-size: 32px;
    opacity: 0.6;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.image-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quality-badge,
.cost-badge {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.cost-badge {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.quality-badge.quality-premium {
    background: rgba(255, 215, 0, 0.8);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.quality-badge.quality-standard {
    background: rgba(0, 255, 255, 0.8);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.quality-badge.quality-fast {
    background: rgba(255, 105, 180, 0.8);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

.generation-info {
    padding: 15px;
    position: relative;
    z-index: 2;
}

.generation-mode {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
    text-align: center;
}

.mode-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.mode-text {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}



.generation-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* =================== НОВЫЕ СТИЛИ ГАРДЕРОБА =================== */

/* =================== КАРТОЧКИ В СТИЛЕ СОЦСЕТЕЙ =================== */

.social-cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 20px 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.1);
}

.social-card-header {
    display: flex;
    align-items: center;
    padding: 20px 25px 15px;
    gap: 15px;
}

.generation-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    animation: rotate 6s linear infinite;
}

.avatar-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.generation-info {
    flex: 1;
}

.generation-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.generation-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.generation-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.card-menu {
    flex-shrink: 0;
}

.menu-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.social-card-image {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-placeholder.large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.image-placeholder.large .placeholder-icon {
    font-size: 60px;
    opacity: 0.4;
}

.placeholder-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.image-overlay-social {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.social-card-image:hover .image-overlay-social {
    opacity: 1;
}

.overlay-btn {
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
}

.image-tags {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tag.premium {
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.tag.standard {
    background: rgba(0, 255, 255, 0.9);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.tag.fast {
    background: rgba(255, 105, 180, 0.9);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

.tag.cost {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-card-actions {
    padding: 20px 25px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.action-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.action-btn.heart.active {
    color: #ff4757;
}

.action-btn.heart.active .btn-icon {
    animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.btn-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-text {
    font-size: 13px;
    font-weight: 600;
}

.social-card-content {
    padding: 0 25px 25px;
}

.generation-description {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: #00ffff;
    font-weight: 600;
}

.generation-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

/* Адаптивность для карточек */
@media (max-width: 768px) {
    .social-cards-container {
        margin: 20px;
        max-width: none;
    }
    
    .social-card-header {
        padding: 15px 20px 10px;
    }
    
    .social-card-image {
        height: 300px;
    }
    
    .social-card-actions,
    .social-card-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .action-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .generation-stats {
        grid-template-columns: 1fr;
    }
}

/* Контроль просмотра */
.view-controls-glass {
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
}

.view-switch-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.view-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.view-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.view-tab.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.tab-icon {
    font-size: 16px;
}

.tab-text {
    font-size: 14px;
    font-weight: 600;
}

/* Переключение видов */
.wardrobe-view {
    display: none;
    margin: 20px 0;
}

.wardrobe-view.active {
    display: block;
}

/* =================== ВРЕМЕННАЯ ШКАЛА =================== */

.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(0, 255, 255, 0.8),
        rgba(255, 0, 255, 0.6),
        rgba(0, 255, 255, 0.8)
    );
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin: 30px 0;
    padding-left: 80px;
}

.timeline-dot {
    position: absolute;
    left: 22px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: 3px solid rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    z-index: 2;
}

.timeline-content {
    position: relative;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.generation-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.generation-status.success {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-icon {
    font-size: 14px;
}

.timeline-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.generation-image-large {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.generation-image-large:hover .image-overlay {
    opacity: 1;
}

.view-btn, .share-btn {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover, .share-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

.generation-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    min-width: 70px;
}

.cost-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffd700;
}

.prompt-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* =================== ГАЛЕРЕЯ (MASONRY) =================== */

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.masonry-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.masonry-item.large {
    grid-row: span 2;
}

.masonry-item.medium {
    grid-row: span 1;
}

.masonry-item.small {
    grid-row: span 1;
}

.masonry-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.masonry-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.masonry-item.large .masonry-image {
    height: 300px;
}

.masonry-item.small .masonry-image {
    height: 150px;
}

.overlay-info {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.overlay-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .overlay-actions {
    opacity: 1;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

.masonry-info {
    padding: 12px;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.info-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* =================== СПИСОК =================== */

.list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 15px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.list-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
}

.list-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-image .placeholder-icon {
    font-size: 32px;
    opacity: 0.7;
}

.list-content {
    flex: 1;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.list-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.generation-prompt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.4;
}

.generation-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.meta-label {
    color: rgba(255, 255, 255, 0.6);
}

.date-value {
    color: rgba(255, 255, 255, 0.8);
}

.list-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-actions .action-btn {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100px;
    text-align: center;
}

.list-actions .action-btn.primary {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
}

.list-actions .action-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

/* =================== АДАПТИВНОСТЬ =================== */

@media (max-width: 768px) {
    .timeline-body {
        grid-template-columns: 1fr;
    }
    
    .list-item {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }
    
    .list-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }
    
    .view-switch-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }
}

/* Мобильный профиль */
.profile-photos-section,
.profile-info-section,
.profile-stats-section,
.settings-main-glass,
.version-glass-section {
    margin: 20px;
}

.photos-glass-card,
.profile-info-card,
.stats-mobile-card,
.settings-glass-card,
.version-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
}

.section-title-mobile {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
    text-align: center;
}

/* Фотографии профиля */
.main-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.photo-controls {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.photo-control-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-control-btn.upload-btn {
    border-color: rgba(0, 255, 255, 0.3);
}

.photo-control-btn.upload-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.photo-control-btn.delete-btn {
    border-color: rgba(255, 100, 100, 0.3);
}

.photo-control-btn.delete-btn:hover {
    background: rgba(255, 100, 100, 0.1);
    border-color: rgba(255, 100, 100, 0.5);
    box-shadow: 0 0 15px rgba(255, 100, 100, 0.2);
}

.control-icon {
    font-size: 16px;
}

.control-text {
    font-weight: 500;
}

.photo-upload-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-upload-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.photo-upload-card:hover .photo-upload-glow {
    opacity: 1;
}

.photo-upload-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.photo-container-mobile {
    margin-bottom: 12px;
}

.photo-ring-mobile {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.photo-ring-mobile::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.6), rgba(255, 0, 255, 0.6));
    background-clip: border-box;
}

.photo-ring-mobile.additional::before {
    background: linear-gradient(45deg, rgba(255, 140, 0, 0.6), rgba(255, 69, 0, 0.6));
}

.photo-inner-mobile {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.photo-placeholder-mobile {
    text-align: center;
    transition: all 0.3s ease;
}

.upload-icon-mobile {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    margin-bottom: 4px;
}

.upload-text {
    font-size: 12px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.photo-status {
    margin-top: 8px;
}

.status-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Информация профиля */
.info-fields-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.field-group-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-label-mobile {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.gender-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gender-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.gender-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.gender-btn.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.gender-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.gender-text {
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.age-slider-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.age-slider-mobile {
    width: 100%;
    height: 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.age-slider-mobile::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.age-slider-mobile::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.age-slider-mobile::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.age-display-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.age-display-container:focus-within {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.age-input-mobile {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 50px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.age-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.save-profile-btn {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.5);
    margin: 0;
    max-width: none;
}

.save-btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.4));
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.save-profile-btn:hover .save-btn-glow {
    opacity: 1;
}

.save-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.save-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.save-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 8px;
}

.settings-title,
.stats-title,
.version-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.form-group-neon {
    margin-bottom: 20px;
}

.neon-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.radio-group-neon {
    display: flex;
    gap: 15px;
}

.radio-neon {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-neon:hover {
    transform: translateY(-1px);
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.radio-neon input[type="radio"] {
    display: none;
}

.radio-neon input[type="radio"]:checked + .radio-custom {
    border-color: rgba(0, 255, 255, 0.8);
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.radio-neon input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.8), rgba(255, 0, 255, 0.8));
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.radio-text {
    font-size: 14px;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.slider-neon {
    position: relative;
}

.age-slider-neon {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.age-slider-neon::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.8), rgba(255, 0, 255, 0.8));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.age-slider-neon::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.8), rgba(255, 0, 255, 0.8));
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.slider-value {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.select-neon {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.select-neon:focus {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.select-neon option {
    background: rgba(10, 10, 10, 0.9);
    color: #ffffff;
}

.save-btn-neon {
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.save-btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.save-btn-neon:hover .btn-glow {
    opacity: 1;
}

/* Новые стили для настроек */
.settings-section-glass {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.settings-section-glass.first-section {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.language-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.language-option.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
}

.language-option.active .language-check {
    opacity: 1;
    color: #00ffff;
}

.language-flag {
    font-size: 24px;
    margin-right: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.language-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.language-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.language-native {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.language-check {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.quality-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.quality-option {
    display: flex;
    align-items: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.quality-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.quality-option.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
}



.quality-icon {
    font-size: 24px;
    margin-right: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.quality-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-right: 16px;
}

.quality-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.quality-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.quality-cost {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 16px;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cost-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.cost-icon {
    font-size: 14px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.quality-check {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.quality-option.active .quality-check {
    opacity: 1;
    color: #00ffff;
}

.bug-report-form {
    margin-top: 16px;
}

.textarea-neon {
    width: 100%;
    min-height: 100px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.textarea-neon:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.textarea-neon::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.bug-report-btn {
    width: 100%;
    margin-top: 20px;
    padding: 10px 24px;
    background: linear-gradient(
        135deg,
        rgba(255, 69, 0, 0.8) 0%,
        rgba(255, 140, 0, 0.8) 100%
    );
    border: 1px solid rgba(255, 69, 0, 0.5);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
}

.bug-report-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 69, 0, 1) 0%,
        rgba(255, 140, 0, 1) 100%
    );
    border-color: rgba(255, 69, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.3);
}

.bug-report-btn .btn-glow {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(
        45deg, 
        rgba(255, 69, 0, 0.4),
        rgba(255, 140, 0, 0.4)
    );
    border-radius: 18px;
    opacity: 0;
    transition: all 0.4s ease;
    filter: blur(6px);
}

.bug-report-btn:hover .btn-glow {
    opacity: 1;
    filter: blur(8px);
}

.bug-report-btn .btn-icon {
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.bug-report-btn .btn-text {
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Мобильная статистика */
.stats-grid-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-mobile-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-mobile-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-mobile-glow.primary {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.4));
}

.stat-mobile-glow.secondary {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.4), rgba(255, 105, 180, 0.4));
}

.stat-mobile-item:hover .stat-mobile-glow {
    opacity: 1;
}

.stat-mobile-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-mobile-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.stat-mobile-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    flex-shrink: 0;
}

.stat-mobile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-mobile-value {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.stat-mobile-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Статистика */
.stats-grid-neon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item-neon {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-glow.cyan {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.6), rgba(0, 255, 255, 0.3));
}

.stat-glow.pink {
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.6), rgba(255, 0, 255, 0.3));
}

.stat-glow.purple {
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.6), rgba(138, 43, 226, 0.3));
}

.stat-glow.green {
    background: linear-gradient(45deg, rgba(0, 255, 127, 0.6), rgba(0, 255, 127, 0.3));
}

.stat-item-neon:hover .stat-glow {
    opacity: 1;
}

.stat-item-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Настройки */
.toggle-group-neon {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.toggle-item-neon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-item-neon:last-child {
    border-bottom: none;
}

.toggle-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.toggle-switch-neon {
    position: relative;
    width: 50px;
    height: 25px;
    cursor: pointer;
}

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

.toggle-slider-neon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-slider-neon::before {
    content: '';
    position: absolute;
    height: 17px;
    width: 17px;
    left: 3px;
    top: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.toggle-switch-neon input[type="checkbox"]:checked + .toggle-slider-neon {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.toggle-switch-neon input[type="checkbox"]:checked + .toggle-slider-neon::before {
    transform: translateX(24px);
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.9), rgba(255, 0, 255, 0.9));
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* Секция настроек водяного знака */
.watermark-toggle-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.toggle-info {
    flex: 1;
    margin-right: 20px;
}

.toggle-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.toggle-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Кнопки профиля - одинаковый размер */
.edit-profile-btn,
.save-profile-btn,
.cancel-edit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.edit-profile-btn {
    background: rgba(255, 255, 255, 0.1);
}

.edit-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edit-profile-btn:hover .edit-btn-glow {
    opacity: 1;
}

.edit-profile-btn:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.edit-icon {
    font-size: 16px;
}

.edit-text {
    font-weight: 500;
}

/* Режим просмотра профиля */
.profile-info-view {
    padding: 15px 0;
}

.view-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.info-row-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row-view:last-child {
    border-bottom: none;
}

.info-label-view {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.info-value-view {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Режим редактирования профиля */
.profile-info-edit {
    padding: 15px 0;
}

.edit-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cancel-edit-btn {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.cancel-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(255, 100, 100, 0.2));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cancel-edit-btn:hover .cancel-btn-glow {
    opacity: 1;
}

.cancel-edit-btn:hover {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.cancel-icon {
    font-size: 16px;
}

.cancel-text {
    font-weight: 500;
}

/* Информация о версии */
.version-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.version-item:last-child {
    border-bottom: none;
}

.version-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.version-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Неоновая навигация */
.nav-neon {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    z-index: 200;
    padding: 0 20px 20px;
}

.nav-bg-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-radius: 30px;
    opacity: 0.8;
    filter: blur(10px);
}

.nav-content {
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.nav-item-neon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    margin: 0 2px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    flex: 1;
}

.nav-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.6), rgba(255, 0, 255, 0.6));
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-item-neon.active .nav-glow,
.nav-item-neon:hover .nav-glow {
    opacity: 1;
}

.nav-item-neon:hover {
    transform: translateY(-3px);
}

.nav-icon {
    font-size: 20px;
    transition: all 0.3s ease;
}

.nav-item-neon.active .nav-icon {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.nav-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-item-neon.active .nav-label {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* Модальное окно */
.modal-neon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-neon.show {
    display: flex;
}

.modal-overlay-neon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content-neon {
    position: relative;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 0;
    width: 100%;
    max-width: 380px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Кастомный скролл */
.modal-content-neon::-webkit-scrollbar {
    width: 3px;
}

.modal-content-neon::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content-neon::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: background 0.3s ease;
}

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

.modal-bg-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border-radius: 30px;
    opacity: 0.8;
    filter: blur(10px);
    z-index: -1;
}

.modal-header-neon {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.modal-title-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title-icon {
    font-size: 24px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    margin: 0;
}

.modal-close-neon {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.close-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.6), rgba(255, 105, 180, 0.6));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modal-close-neon:hover .close-glow {
    opacity: 1;
}

.modal-close-neon:hover {
    transform: scale(1.1);
}

.modal-body-neon {
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    word-wrap: break-word;
}

.balance-showcase {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.05));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

.balance-showcase-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 18px;
    opacity: 0.8;
    animation: balanceGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes balanceGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.balance-showcase-content {
    position: relative;
    z-index: 2;
}

.balance-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.balance-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.balance-value {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    line-height: 1;
}

.balance-gem {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: gemSparkle 2s ease-in-out infinite;
    line-height: 1;
}

.packages-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

.package-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.package-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.package-card:hover .package-card-glow {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.popular-mobile {
    border-color: rgba(255, 215, 0, 0.5);
}

.popular-mobile .package-card-glow {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.4), rgba(255, 105, 180, 0.4));
}

.popular-badge-mobile {
    position: absolute;
    top: -6px;
    right: 12px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.9), rgba(255, 105, 180, 0.9));
    color: #000;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
}

.popular-text {
    font-size: 9px;
}

.package-content-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.package-main-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-icon-mobile {
    font-size: 28px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.package-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-name-mobile {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.package-price-mobile {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.package-bonus-mobile {
    font-size: 12px;
    font-weight: 600;
    color: #00ff88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.generations-label {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.package-generations {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-top: 4px;
    width: 100%;
}

.generation-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 6px 2px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
    min-width: 0;
    box-sizing: border-box;
}

.gen-type {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.gen-count {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    line-height: 1;
}

.payment-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.payment-methods-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.payment-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.payment-options {
    display: flex;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.payment-emoji {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.payment-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.security-notice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 0, 0.05);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.security-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.5));
}

.security-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Респонсивность */
@media (max-width: 390px) {
    .app-container {
        max-width: 100%;
    }
    
    .glass-header {
        padding: 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .main-section {
        padding: 15px;
        padding-bottom: 100px;
    }
    
    .welcome-glass {
        padding: 20px;
    }
    
    .neon-title {
        font-size: 24px;
    }
    
        .stats-row {
        gap: 15px;
        margin-top: 20px;
    }

    .stat-item {
        min-width: 80px;
        max-width: 100px;
        padding: 15px 12px;
    }

    .stat-value {
        font-size: 20px;
    }
    
    .neon-gallery {
        grid-template-columns: 1fr;
    }
    
    .generations-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    
    .stats-grid-neon {
        grid-template-columns: 1fr;
    }
    
    .nav-content {
        padding: 12px;
    }
    
    .nav-item-neon {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .nav-icon {
        font-size: 18px;
    }
    
    .nav-label {
        font-size: 9px;
    }
}

/* Скрытые элементы */
.hidden {
    display: none !important;
}

/* ===== СИСТЕМА УВЕДОМЛЕНИЙ ===== */

.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
    pointer-events: none;
}

.notification {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    opacity: 0;
    animation: slideInNotification 0.3s ease-out forwards;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    word-wrap: break-word;
}

.notification.success {
    border-color: rgba(0, 255, 127, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
}

.notification.error {
    border-color: rgba(255, 69, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
}

.notification.info {
    border-color: rgba(0, 191, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.notification.warning {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0.8), 
        rgba(255, 0, 255, 0.8), 
        rgba(255, 215, 0, 0.8)
    );
    border-radius: 16px 16px 0 0;
}

.notification.success::before {
    background: linear-gradient(90deg, rgba(0, 255, 127, 0.8), rgba(50, 205, 50, 0.8));
}

.notification.error::before {
    background: linear-gradient(90deg, rgba(255, 69, 0, 0.8), rgba(255, 0, 0, 0.8));
}

.notification.info::before {
    background: linear-gradient(90deg, rgba(0, 191, 255, 0.8), rgba(30, 144, 255, 0.8));
}

.notification.warning::before {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.8), rgba(255, 165, 0, 0.8));
}

.notification:hover {
    transform: translateX(0) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.notification.removing {
    animation: slideOutNotification 0.3s ease-in forwards;
}

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

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

/* Мобильная адаптация уведомлений */
@media (max-width: 480px) {
    .notifications-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        font-size: 13px;
        padding: 14px 16px;
    }
}

/* ===== ПРИВЕТСТВЕННОЕ ОКНО ===== */

.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.welcome-modal.show {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.welcome-modal-content {
    position: relative;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: welcomeSlideIn 0.5s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Кастомный скролл для приветственного модального окна */
.welcome-modal-content::-webkit-scrollbar {
    width: 3px;
}

.welcome-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.welcome-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: background 0.3s ease;
}

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

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

@keyframes welcomeGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.welcome-step {
    padding: 32px 24px;
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    min-height: 500px;
    flex-direction: column;
    background: linear-gradient(
        45deg,
        rgba(0, 255, 255, 0.3),
        rgba(255, 0, 255, 0.3),
        rgba(255, 215, 0, 0.3),
        rgba(0, 255, 127, 0.3)
    );
}

.welcome-step.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.welcome-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emoji {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.welcome-logo .logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.step-indicator {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.welcome-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.welcome-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    margin: 0;
}

.welcome-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Выбор пола */
.gender-selection-welcome {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.gender-btn-welcome {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-btn-welcome:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.gender-btn-welcome.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.gender-icon-welcome {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.gender-text-welcome {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Выбор возраста */
.age-selection-welcome {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 16px;
}

.age-display-welcome {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.age-value-welcome {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.age-unit-welcome {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.age-slider-welcome {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.age-slider-welcome::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.age-slider-welcome::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
}

.age-range-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Загрузка фото */
.photo-upload-welcome {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 16px;
}

.photo-preview-welcome {
    width: 200px;
    height: 300px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.photo-preview-welcome:hover {
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.05);
    transform: translateY(-2px);
}

.photo-placeholder-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 20px;
}

.upload-icon-welcome {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.upload-text-welcome {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.upload-hint-welcome {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.upload-btn-welcome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn-welcome:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

/* Завершение */
.completion-actions {
    margin-top: 16px;
}

.action-suggestion {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.action-suggestion:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.action-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.action-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Кнопки */
.welcome-footer {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.welcome-btn.primary {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.welcome-btn.primary:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.4));
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.welcome-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.welcome-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 480px) {
    .welcome-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .welcome-step {
        padding: 24px 20px;
        min-height: 450px;
    }
    
    .welcome-title {
        font-size: 20px;
    }
    
    .welcome-description {
        font-size: 14px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .gender-selection-welcome {
        gap: 12px;
    }
    
    .age-value-welcome {
        font-size: 36px;
    }
    
    .photo-preview-welcome {
        width: 200px;
        height: 200px;
    }
    
    .welcome-footer {
        flex-direction: column;
        gap: 8px;
    }
}

/* Версия: 4.6 */ 

/* Версия: 4.8 */

/* =================== СТИЛИ МОДАЛЬНЫХ ОКОН ДЕЙСТВИЙ =================== */

/* Общие стили для проверки фотографии пользователя */
.user-photo-check {
    margin-bottom: 24px;
}

.photo-check-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
}

.photo-check-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 18px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 105, 180, 0.3));
    opacity: 0.8;
    z-index: -1;
}

.photo-check-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.photo-check-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    flex-shrink: 0;
}

.photo-check-info {
    flex: 1;
}

.photo-check-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.photo-check-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.upload-user-photo-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.upload-user-photo-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

/* Примеры фотографий */
.photo-example {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.example-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.example-image {
    width: 100%;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}

.example-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 16px;
}

.example-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.example-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

/* Выбор качества в модалках */
.quality-selection {
    margin-bottom: 24px;
}

.quality-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.quality-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.quality-options-modal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quality-option-modal {
    flex: 1;
    min-width: 100px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quality-option-modal:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.quality-option-modal.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.quality-option-modal .quality-icon {
    font-size: 20px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.quality-option-modal .quality-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.quality-option-modal .quality-cost {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Стили для загрузки одежды (примерка) */
.clothes-upload-section {
    margin-bottom: 24px;
}

.clothes-upload-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.clothes-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.clothes-upload-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.clothes-upload-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    padding: 16px;
}

.clothes-upload-placeholder:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.clothes-upload-placeholder .upload-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.clothes-upload-placeholder .upload-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    line-height: 1.2;
}

.clothes-example {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Стили для ввода описания образа */
.style-input-section {
    margin-bottom: 24px;
}

.style-input-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.style-input-group {
    margin-bottom: 16px;
}

.style-textarea {
    width: 100%;
    min-height: 100px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.style-textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.style-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.style-examples {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.example-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.example-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.example-tag:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Стили для ввода события */
.event-input-section {
    margin-bottom: 24px;
}

.event-input-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.event-input-group {
    margin-bottom: 16px;
}

.event-input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.event-input:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.event-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.event-examples {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

/* Футер модалки с кнопкой */
.modal-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.action-btn-modal {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    margin: 0 8px;
    justify-content: center;
}

.action-btn-modal.primary-btn {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-color: rgba(0, 255, 255, 0.4);
}

.action-btn-modal:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.action-btn-modal .btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.6), rgba(255, 0, 255, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.action-btn-modal:hover .btn-glow {
    opacity: 1;
}

.action-btn-modal .btn-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.action-btn-modal .btn-text {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
    .photo-check-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .photo-check-icon {
        align-self: center;
    }
    
    .upload-user-photo-btn {
        align-self: center;
    }
    
    .quality-options-modal {
        flex-direction: column;
    }
    
    .quality-option-modal {
        min-width: auto;
    }
    
    .clothes-upload-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .example-tags {
        justify-content: center;
    }
    
    .action-btn-modal {
        width: 100%;
        min-width: auto;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Стили для многошагового интерфейса модалок */

.modal-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.modal-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.step-content {
    text-align: center;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
    line-height: 1.5;
}

/* Стили для загрузки фото пользователя */
.user-photo-upload {
    margin: 24px 0;
}

.photo-upload-area {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-upload-area:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.photo-upload-content {
    text-align: center;
    padding: 20px;
}

.photo-upload-icon {
    font-size: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.photo-upload-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.photo-upload-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Новые стили для качества */
.quality-options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.quality-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.quality-option-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.quality-option-card.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.quality-option-card .quality-icon {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.quality-option-card .quality-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quality-option-card .quality-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
    margin: 0;
}

.quality-option-card .quality-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    margin: 0;
}

.quality-option-card .quality-cost {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-left: auto;
}

/* Кнопки навигации */
.step-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-decoration: none;
    margin: 0 8px;
}

.step-btn.primary {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #ffffff;
}

.step-btn.primary:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.step-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.step-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.step-btn.disabled {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.step-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    transform: none !important;
    box-shadow: none !important;
}

.step-btn .btn-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.step-btn .btn-text {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer:has(.step-btn.secondary) {
    justify-content: space-between;
}

.modal-footer .step-btn:only-child {
    margin-left: auto;
    margin-right: 0;
}

/* Загрузка фото пользователя */
.user-photo-upload {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.photo-upload-area {
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.photo-upload-area:hover {
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.photo-upload-area.uploaded {
    background-color: rgba(0, 255, 255, 0.1);
}

.photo-upload-area.uploaded .photo-upload-content {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

.photo-upload-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.photo-upload-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.photo-upload-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.photo-upload-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Модальное окно результатов */
.result-modal {
    max-width: 450px;
}

.result-container {
    padding: 0 24px;
}

.result-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.result-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.result-image {
    width: 280px;
    height: 360px;
    object-fit: cover;
    display: block;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 16px 12px;
}

.result-quality {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.result-info {
    text-align: center;
}

.result-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.4;
}

.result-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 3px;
    color: rgba(255, 255, 255);
    font-size: 14px;
    width: 13vh;
    justify-content: center;
}

.stat-icon {
    font-size: 14px;
}

.result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.result-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    min-width: 100px;
    justify-content: center;
}

.result-btn.primary {
    background: linear-gradient(135deg, #00f5ff, #0099cc);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
}

.result-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 255, 0.4);
}

.result-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.result-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px 0;
    margin: 0 -24px;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Анимация загрузки кнопки */
.step-btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.step-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.loading-spinner-btn {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spinButton 1s linear infinite;
}

@keyframes spinButton {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}