/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: 
        radial-gradient(circle at 20% 80%, #120033 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #000428 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #004e92 0%, transparent 50%),
        linear-gradient(135deg, #000428 0%, #004e92 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 16px;
    position: relative;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px 0;
}

.profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.username {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
}

/* VIP Banner */
.vip-banner {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vip-banner:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 30px 60px rgba(102, 126, 234, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vip-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.vip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.vip-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.vip-badge {
    background: 
        linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #ffd700 100%);
    padding: 16px 32px;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
    box-shadow: 
        0 12px 35px rgba(255, 107, 107, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.vip-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.vip-badge:hover::before {
    left: 100%;
}

.vip-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 107, 107, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
    background: 
        linear-gradient(135deg, #ff8e8e 0%, #ffb84d 50%, #ffe066 100%);
}

.vip-badge:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 107, 107, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.vip-badge span {
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.vip-description {
    position: relative;
    z-index: 2;
}

.vip-description h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vip-description p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vip-description strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Search Bar */
.search-container {
    margin-bottom: 24px;
}

.info-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background: 
        linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 150, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: hintPulse 3s ease-in-out infinite;
}

.info-hint i {
    color: #00d4ff;
    font-size: 16px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(0, 212, 255, 0.3);
        border-color: rgba(0, 212, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
        border-color: rgba(0, 212, 255, 0.5);
    }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.search-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.search-bar i {
    color: #94a3b8;
    font-size: 16px;
}

.search-bar input {
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    width: 100%;
    font-family: inherit;
}

.search-bar input::placeholder {
    color: #94a3b8;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

/* Pricing Cards */
.pricing-card {
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%),
        linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 150, 0.1) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 20px 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover::after {
    transform: translateX(100%);
}

.pricing-card.featured {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border: 2px solid rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 15px 45px rgba(102, 126, 234, 0.5),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: featuredGlow 3s ease-in-out infinite alternate;
}

@keyframes featuredGlow {
    0% { 
        box-shadow: 
            0 15px 45px rgba(102, 126, 234, 0.5),
            0 0 20px rgba(255, 215, 0, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
    100% { 
        box-shadow: 
            0 20px 60px rgba(102, 126, 234, 0.7),
            0 0 40px rgba(255, 215, 0, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 0.4);
    }
}

.pricing-card.premium {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff6b6b 100%);
    color: #1a1a2e;
    border: 2px solid rgba(255, 107, 107, 0.8);
    box-shadow: 
        0 15px 45px rgba(255, 179, 71, 0.5),
        0 0 0 1px rgba(255, 107, 107, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    animation: premiumGlow 4s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    0% { 
        box-shadow: 
            0 15px 45px rgba(255, 179, 71, 0.5),
            0 0 25px rgba(255, 107, 107, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.4);
    }
    100% { 
        box-shadow: 
            0 20px 60px rgba(255, 179, 71, 0.7),
            0 0 50px rgba(255, 107, 107, 0.7),
            inset 0 2px 0 rgba(255, 255, 255, 0.5);
    }
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.new-badge, .premium-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.premium-badge {
    background: #00d4aa;
}

.vip-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.6);
    animation: vipPulse 2s ease-in-out infinite alternate;
}

@keyframes vipPulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.6);
    }
    100% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.8);
    }
}

.vip-entry-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%),
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #ffffff;
    border: 3px solid rgba(255, 107, 107, 0.9);
    box-shadow: 
        0 20px 60px rgba(102, 126, 234, 0.6),
        0 0 40px rgba(255, 107, 107, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    animation: vipGlow 3s ease-in-out infinite alternate;
    transform: scale(1.02);
}

@keyframes vipGlow {
    0% { 
        box-shadow: 
            0 20px 60px rgba(102, 126, 234, 0.6),
            0 0 40px rgba(255, 107, 107, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.5);
    }
    100% { 
        box-shadow: 
            0 25px 70px rgba(102, 126, 234, 0.8),
            0 0 60px rgba(255, 107, 107, 0.7),
            inset 0 2px 0 rgba(255, 255, 255, 0.6);
    }
}

.vip-add-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vip-add-btn:hover {
    background: linear-gradient(135deg, #ff8e53 0%, #ff6b6b 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.7);
}

.plan-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: iconFloat 3s ease-in-out infinite alternate;
}

.plan-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.8) 0%, rgba(102, 126, 234, 0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.plan-image:hover .image-overlay {
    opacity: 1;
}

.plan-image:hover .plan-img {
    transform: scale(1.1);
}

.plan-image:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 212, 255, 0.4),
        0 0 0 3px rgba(0, 212, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

@keyframes iconFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-3px); }
}

.featured .plan-image {
    background: rgba(255, 255, 255, 0.3);
}

.premium .plan-image {
    background: rgba(26, 26, 46, 0.3);
    color: #1a1a2e;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-subtitle {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.plan-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.plan-name i {
    color: #00d4ff;
    font-size: 14px;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

.premium .plan-name i {
    color: #1a1a2e;
    filter: drop-shadow(0 0 4px rgba(26, 26, 46, 0.5));
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 14px;
    font-weight: 600;
}

.amount {
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Add Button */
.add-btn {
    width: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg, #00d4ff 0%, #667eea 50%, #764ba2 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.add-btn:hover::before {
    left: 100%;
}

.add-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
}

.add-btn:active {
    transform: translateY(0);
}

.featured .add-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium .add-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

/* Footer */
.footer {
    margin-bottom: 20px;
    position: relative;
}

.footer-content {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 0, 150, 0.15) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 150, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: footerGlow 4s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.footer-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(255, 0, 150, 0.4) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 14px;
}

.feature-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

@media (min-width: 480px) {
    .footer-features {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
        gap: 8px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .feature-title {
        font-size: 13px;
    }
    
    .feature-description {
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .footer-features {
        gap: 16px;
    }
    
    .feature-item {
        padding: 20px 16px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Footer Copyright */
.footer-copyright {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.copyright-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
}

.copyright-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: logoGlow 3s ease-in-out infinite alternate;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(255, 0, 150, 0.3) 100%);
}

.copyright-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(0%) contrast(1.1) brightness(1.1);
    transition: all 0.3s ease;
}

.copyright-logo:hover .copyright-img {
    filter: grayscale(0%) contrast(1.2) brightness(1.2);
    transform: scale(1.05);
}

@keyframes logoGlow {
    0% { 
        box-shadow: 
            0 6px 15px rgba(0, 0, 0, 0.3),
            0 0 0 2px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% { 
        box-shadow: 
            0 8px 20px rgba(0, 212, 255, 0.4),
            0 0 25px rgba(0, 212, 255, 0.3),
            0 0 0 2px rgba(0, 212, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.copyright-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.copyright-brand {
    font-size: 16px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #dc143c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.copyright-year {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .footer-copyright {
        margin-top: 20px;
        padding-top: 16px;
    }
    
    .copyright-content {
        gap: 10px;
    }
    
    .copyright-logo {
        width: 42px;
        height: 42px;
    }
    
    .copyright-brand {
        font-size: 14px;
    }
    
    .copyright-year {
        font-size: 12px;
        padding: 3px 6px;
    }
}

/* Cart Summary */
.cart-summary {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: calc(100% - 32px);
    max-width: 388px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    box-shadow: 0 -8px 32px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.cart-summary.show {
    transform: translateX(-50%) translateY(0);
}

.cart-content {
    color: white;
}

.cart-items {
    margin-bottom: 16px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-total {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.checkout-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 14px 20px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(-50%) translateY(0);
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 16px 12px;
    }
    
    .vip-title {
        font-size: 28px;
    }
    
    .pricing-grid {
        gap: 12px;
    }
    
    .pricing-card {
        padding: 16px 12px;
    }
    
    .plan-image {
        width: 100px;
        height: 100px;
    }
    
    .image-overlay {
        font-size: 24px;
    }
    
    .card-header h3 {
        font-size: 14px;
    }
    
    .plan-subtitle {
        font-size: 11px;
    }
    
    .plan-name {
        font-size: 11px;
    }
    
    .amount {
        font-size: 18px;
    }
    
    .add-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .pricing-grid {
        gap: 10px;
    }
    
    .pricing-card {
        padding: 14px 10px;
    }
    
    .plan-image {
        width: 90px;
        height: 90px;
    }
    
    .image-overlay {
        font-size: 22px;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 150, 0.1) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    max-height: 75vh;
    overflow-y: hidden;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.modal-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 107, 107, 0.3);
    border-color: rgba(255, 107, 107, 0.5);
    transform: scale(1.1);
}

.modal-content {
    padding: 24px;
    color: white;
}

.modal-image {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}

.modal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.6) 0%, rgba(102, 126, 234, 0.4) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    backdrop-filter: blur(3px);
    z-index: 2;
}

.modal-info {
    text-align: center;
}

.modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.modal-badge.new {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.modal-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.modal-badge.vip {
    background: 
        linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #000;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.2);
    animation: vipPulse 2s ease-in-out infinite alternate;
}

#modalTitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#modalSubtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
    font-weight: 500;
}

.modal-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

#modalAmount {
    font-size: 28px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-description {
    text-align: left;
    margin-bottom: 20px;
}



.modal-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
}

#modalDescription {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.modal-add-btn, .modal-info-btn {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-add-btn {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg, #00d4ff 0%, #667eea 50%, #764ba2 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}



/* Modal Responsive */
@media (max-width: 480px) {
    .modal-container {
        width: 95%;
        margin: 20px;
        max-height: 80vh;
    }
    
    .modal-content {
        padding: 16px;
    }
    
    .modal-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 16px;
    }
    
    .modal-image-overlay {
        font-size: 32px;
    }
    
    #modalTitle {
        font-size: 20px;
    }
    
    #modalAmount {
        font-size: 26px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .modal-add-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .modal-description h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    #modalFeatures li {
        font-size: 12px;
        padding: 3px 0;
    }
    
    .modal-details {
        padding: 12px;
        margin-top: 12px;
    }
    
    #modalDescription {
        font-size: 12px;
    }
}

/* VIP-Вход блок */
.vip-entry-section {
    padding: 60px 20px;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.vip-entry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vip-entry-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vip-entry-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vip-entry-header {
    text-align: left;
    margin-bottom: 16px;
}

.vip-entry-badge {
    display: inline-block;
    background: 
        linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.2);
    animation: vipPulse 2s ease-in-out infinite alternate;
}

@keyframes vipPulse {
    0% {
        box-shadow: 
            0 4px 15px rgba(255, 215, 0, 0.4),
            0 0 0 2px rgba(255, 215, 0, 0.2);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.6),
            0 0 0 3px rgba(255, 215, 0, 0.4);
    }
}

.vip-entry-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-entry-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.vip-entry-description {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.vip-entry-description p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: left;
}

.vip-entry-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.vip-entry-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.vip-entry-features .feature-item i {
    color: #00d4ff;
    font-size: 18px;
    min-width: 20px;
}

.vip-entry-features .feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.vip-entry-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 20px;
    color: #ffd700;
    font-weight: 600;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.vip-entry-btn {
    background: 
        linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border: none;
    border-radius: 16px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.2);
    align-self: flex-start;
}

.vip-entry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.6),
        0 0 0 3px rgba(255, 215, 0, 0.4);
}

.vip-entry-btn i {
    font-size: 18px;
}

.vip-entry-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.vip-img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 4px rgba(255, 215, 0, 0.4);
}

.vip-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 0 3px rgba(255, 215, 0, 0.2);
    animation: vipGlow 3s ease-in-out infinite alternate;
}

@keyframes vipGlow {
    0% {
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.4),
            0 0 0 3px rgba(255, 215, 0, 0.2);
    }
    100% {
        box-shadow: 
            0 12px 35px rgba(255, 215, 0, 0.6),
            0 0 0 4px rgba(255, 215, 0, 0.4);
    }
}

/* VIP-Вход Responsive */
@media (max-width: 768px) {
    .vip-entry-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .vip-entry-title {
        font-size: 28px;
    }
    
    .vip-entry-subtitle {
        font-size: 16px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .vip-img {
        width: 250px;
        height: 250px;
    }
    
    .vip-image-overlay {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .vip-entry-section {
        padding: 40px 16px;
    }
    
    .vip-entry-title {
        font-size: 24px;
    }
    
    .vip-entry-subtitle {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .vip-entry-btn {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .vip-img {
        width: 200px;
        height: 200px;
    }
    
    .vip-image-overlay {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* VIP Modal Styles */
#vipModalOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

#vipModalOverlay.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

#vipModalOverlay .modal-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    max-width: 400px;
    width: 100%;
    max-height: 75vh;
    overflow-y: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#vipModalOverlay.show .modal-container {
    transform: scale(1) translateY(0);
}

#vipModalOverlay .modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 20px 0;
}

#vipModalOverlay .modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

#vipModalOverlay .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#vipModalOverlay .modal-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px 20px;
}

#vipModalOverlay .modal-image {
    position: relative;
    text-align: center;
    width: 140px;
    height: 140px;
    margin: 16px auto 12px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

#vipModalOverlay .modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}



#vipModalOverlay .modal-info {
    text-align: center;
}

#vipModalOverlay .modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

#vipModalOverlay h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#vipModalOverlay p {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 16px;
}

#vipModalOverlay .modal-price {
    margin-bottom: 16px;
}

#vipModalOverlay .modal-currency {
    font-size: 18px;
    color: #ffd700;
    margin-right: 4px;
}

#vipModalOverlay .modal-price span:last-child {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
}

#vipModalOverlay .modal-description h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #e2e8f0;
}

#vipModalOverlay .modal-description ul {
    list-style: none;
    margin-bottom: 20px;
}

#vipModalOverlay .modal-description li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #cbd5e0;
}

#vipModalOverlay .modal-description li i {
    color: #48bb78;
    font-size: 16px;
}

#vipModalOverlay .modal-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #a0aec0;
    text-align: left;
}

#vipModalOverlay .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#vipModalOverlay .modal-add-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

#vipModalOverlay .modal-add-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.3);
}

#vipModalOverlay .modal-add-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* VIP Badge Button Styles */
.vip-badge {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.vip-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.3);
}

.vip-badge:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* VIP Modal Responsive */
@media (max-width: 480px) {
    #vipModalOverlay .modal-container {
        max-width: 100%;
        margin: 0 16px;
        max-height: 80vh;
    }
    
    #vipModalOverlay .modal-content {
        padding: 0 16px 20px;
        gap: 14px;
    }
    
    #vipModalOverlay .modal-image {
        width: 120px;
        height: 120px;
        margin: 16px auto 12px;
    }
    
    #vipModalOverlay h2 {
        font-size: 22px;
    }
    
    #vipModalOverlay .modal-price span:last-child {
        font-size: 28px;
    }
    
    #vipModalOverlay .modal-add-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    #vipModalOverlay .modal-description h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    #vipModalOverlay .modal-description li {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    #vipModalOverlay .modal-details p {
        font-size: 12px;
    }
}

/* Принудительное скрытие кнопки "Подробнее" больше не нужно */
