
/* Стили для системы ачивок */
.daily-rewards-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.daily-streak-info {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(56, 189, 248, 0.3);
    margin-bottom: 1rem;
}

.streak-count {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin: 0.5rem 0;
}

.streak-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.daily-rewards-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.daily-reward-day {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.daily-reward-day.claimed {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.daily-reward-day.available {
    border-color: var(--primary);
    background: rgba(129, 140, 248, 0.1);
    cursor: pointer;
}

.daily-reward-day.available:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129, 140, 248, 0.3);
}

.daily-reward-day.locked {
    opacity: 0.5;
    filter: grayscale(1);
}

.day-number {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.day-reward {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.achievements-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.achievement-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border-radius: 12px;
    padding: 1.2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.achievement-card.completed {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.achievement-card.claimed {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.achievement-card.locked {
    opacity: 0.6;
    filter: grayscale(0.8);
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.achievement-info {
    flex: 1;
}

.achievement-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.achievement-description {
    color: #94a3b8;
    font-size: 0.9rem;
}

.achievement-reward {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-weight: 600;
}

.achievement-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-completed {
    background: #10b981;
    color: white;
}

.status-claimed {
    background: #ffd700;
    color: black;
}

.status-locked {
    background: #6b7280;
    color: white;
}

.claim-achievement-btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.claim-achievement-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.claim-achievement-btn:disabled {
    background: #6b7280;
    cursor: not-allowed;
    transform: none;
}


/* Quantum Pass Styles */
.quantum-pass-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.quantum-pass-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quantum-pass-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.quantum-pass-subtitle {
    color: #94a3b8;
    font-size: 1rem;
}

/* Progress Track */
.quantum-pass-track {
    display: flex;
    position: relative;
    margin: 2rem 0;
    min-height: 400px;
}

.track-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ec4899, #8b5cf6);
    transform: translateX(-50%);
    z-index: 1;
}

/* Reward Columns */
.rewards-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.premium-column {
    margin-left: auto;
}

.free-column {
    margin-right: auto;
}

/* Reward Items */
.reward-item {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.free-reward {
    border-color: #475569;
    margin-right: 60px;
}

.premium-reward {
    border-color: #f59e0b;
    margin-left: 60px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(30, 41, 59, 0.8));
}

.reward-item.locked {
    opacity: 0.5;
    filter: grayscale(0.8);
}

.reward-item.current {
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.reward-item.completed {
    border-color: #8b5cf6;
}

/* Final Reward Special Styling */
.final-reward {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
    animation: finalGlow 2s ease-in-out infinite alternate;
}

@keyframes finalGlow {
    from {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    }
    to {
        box-shadow: 0 0 40px rgba(236, 72, 153, 0.8);
    }
}

/* Level Indicators */
.level-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    border: 2px solid #475569;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 3;
}

.level-indicator.current {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.level-indicator.completed {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

/* Purchase Section */
.quantum-pass-purchase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.purchase-btn {
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.purchase-btn.owned {
    background: #10b981;
}

.level-price {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Quantum Pass Modal */
.quantum-pass-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.quantum-pass-modal.active {
    display: flex;
}

.quantum-pass-modal-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(236, 72, 153, 0.3);
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .quantum-pass-track {
        flex-direction: column;
        min-height: auto;
    }
    
    .track-line {
        left: 20px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
    }
    
    .rewards-column {
        width: 100%;
    }
    
    .free-reward,
    .premium-reward {
        margin: 0 0 0 40px;
    }
    
    .premium-reward {
        order: -1;
    }
    
    .level-indicator {
        left: 20px;
        transform: none;
    }
}

/* Исправленные стили для горизонтального скролла */
.quantum-pass-track {
    display: flex;
    flex-direction: row; /* Горизонтальное направление */
    overflow-x: auto; /* Горизонтальный скролл */
    overflow-y: hidden;
    gap: 2rem;
    padding: 1rem;
    min-height: 300px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #ec4899 #1e293b;
}

.quantum-pass-track::-webkit-scrollbar {
    height: 8px;
}

.quantum-pass-track::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 4px;
}

.quantum-pass-track::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    border-radius: 4px;
}

.quantum-pass-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    position: relative;
    flex-shrink: 0;
}

/* Вертикальная линия прогресса */
.level-connector {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, #ec4899, #8b5cf6);
    transform: translateX(-50%);
    z-index: 1;
}

/* Индикатор уровня */
.level-indicator {
    background: #1e293b;
    border: 2px solid #475569;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.level-indicator.current {
    background: #10b981;
    border-color: #10b981;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.level-indicator.completed {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

/* Контейнеры наград */
.level-rewards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.reward-item {
    background: rgba(30, 41, 59, 0.9);
    border-radius: 10px;
    padding: 0.8rem;
    border: 2px solid;
    text-align: center;
    font-size: 0.85rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.free-reward {
    border-color: #475569;
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.3), rgba(30, 41, 59, 0.9));
}

.premium-reward {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(30, 41, 59, 0.9));
}

.reward-item.locked {
    opacity: 0.4;
    filter: grayscale(0.8);
}

.reward-item.current {
    border-color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.reward-item.completed {
    border-color: #8b5cf6;
}

/* Финалная награда */
.final-reward {
    background: linear-gradient(135deg, #ec4899, #8b5cf6) !important;
    border: none !important;
    color: white;
    animation: finalGlow 2s ease-in-out infinite alternate;
}

@keyframes finalGlow {
    from {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    }
    to {
        box-shadow: 0 0 40px rgba(236, 72, 153, 0.8);
    }
}

/* Цена уровня */
.level-unlock-price {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.level-unlock-price:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Навигация */
.quantum-pass-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 0 1rem;
}

.nav-btn {
    background: rgba(129, 140, 248, 0.2);
    border: 2px solid #818cf8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.nav-btn:hover {
    background: #818cf8;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Индикатор прогресса */
.pass-progress {
    text-align: center;
    margin: 1rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .quantum-pass-track {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .quantum-pass-level {
        min-width: 100px;
    }
    
    .level-indicator {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .reward-item {
        font-size: 0.75rem;
        padding: 0.6rem;
        min-height: 50px;
    }
}
.quantum-pass-track {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    padding: 2rem 1rem;
    min-height: 400px;
    position: relative;
    align-items: center;
}

.quantum-pass-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    position: relative;
    flex-shrink: 0;
    height: 350px;
}

/* Центральная линия с кнопкой */
.level-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 200px;
    background: linear-gradient(to bottom, #ec4899, #8b5cf6);
    z-index: 1;
}

.unlock-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.unlock-button {
    background: linear-gradient(45deg, #10b981, #059669);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}

.unlock-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.unlock-button:disabled {
    background: #6b7280;
    cursor: not-allowed;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: none;
}

.unlock-button.owned {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.unlock-cost {
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 41, 59, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
    border: 1px solid #10b981;
    white-space: nowrap;
}

/* Расположение наград */
.level-rewards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.free-reward {
    align-self: flex-start;
    margin-right: 60px;
}

.premium-reward {
    align-self: flex-end;
    margin-left: 60px;
}

.reward-item {
    background: rgba(30, 41, 59, 0.9);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid;
    text-align: center;
    font-size: 0.85rem;
    width: 100px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

/* Состояния наград */
.reward-item.claimable {
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    cursor: pointer;
    animation: pulseClaimable 2s infinite;
}

.reward-item.claimed {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    position: relative;
}

.reward-item.claimed::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.reward-item.locked {
    opacity: 0.4;
    filter: grayscale(0.8);
    cursor: not-allowed;
}

@keyframes pulseClaimable {
    0%, 100% {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    }
}

/* Индикатор уровня */
.level-indicator {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    border: 2px solid #475569;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.level-indicator.completed {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

/* Адаптивность */
@media (max-width: 768px) {
    .quantum-pass-level {
        min-width: 120px;
        height: 320px;
    }
    
    .reward-item {
        width: 90px;
        min-height: 70px;
        font-size: 0.75rem;
    }
    
    .free-reward {
        margin-right: 50px;
    }
    
    .premium-reward {
        margin-left: 50px;
    }
    
    .unlock-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
/* Вариант 2: Цифра уровня между наградами */
.quantum-pass-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    position: relative;
    flex-shrink: 0;
    height: 350px;
}

.level-indicator {
    position: absolute;
    top: calc(50% - 20px); /* Чуть выше центра */
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1e293b;
    border: 2px solid #475569;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}


.level-rewards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.free-reward {
    align-self: flex-start;
    margin-right: 60px;
    margin-top: 20px; /* Отступ от верха */
}

.premium-reward {
    align-self: flex-end;
    margin-left: 60px;
    margin-bottom: 20px; /* Отступ от низа */
}






/* Стили для кнопки добавления кристаллов */
.crystal-add-btn {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.crystal-add-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* Стили для модального окна покупки кристаллов */
.crystal-packages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.crystal-package {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.crystal-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 140, 248, 0.3);
    border-color: var(--secondary);
}

.package-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #ffd700;
}

.package-bonus {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}


/* Стили для кнопки добавления кристаллов */
.crystal-add-btn {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.crystal-add-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* Стили для модального окна покупки кристаллов */
.crystal-packages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.crystal-package {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.crystal-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 140, 248, 0.3);
    border-color: var(--secondary);
}

.package-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Стили для иконки Telegram Stars */
.telegram-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    color: #8B6508;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}

.telegram-star::before {
    content: "★";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.package-bonus {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* Стили для лучшего предложения */
.crystal-package.featured {
    border-color: #FFD700;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(30, 41, 59, 0.9));
    position: relative;
    overflow: hidden;
}

.crystal-package.featured::before {
    content: "🔥 ЛУЧШАЯ ЦЕНА";
    position: absolute;
    top: 10px;
    right: -30px;
    background: linear-gradient(45deg, #FF6B35, #FF8E00);
    color: white;
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    text-align: center;
}

/* Альтернативный вариант с SVG-like иконкой */
.telegram-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    color: #8B6508;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    box-shadow: 0 2px 4px rgba(255, 165, 0, 0.3);
}

.telegram-star::before {
    content: "⭐";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0.9) contrast(1.2);
}
