.store-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(30, 30, 30, 0.7) 100%);
}

.store-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    text-align: center;
}

.store-hero .hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.store-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.store-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: url("/assets/images/store-bg.jpg") center/cover no-repeat;*/
    opacity: 0.15;
    z-index: 1;
}

.store-section {
    padding: 5rem 0;
    position: relative;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 75%, rgba(23, 110, 216, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.container {
    position: relative;
    z-index: 2;
}

.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 16px;
    margin: 0 auto;
    max-width: 800px;
}

.coming-soon i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.coming-soon p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.ranks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.rank-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(25, 25, 25, 0.9));
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.rank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(226, 70, 224, 0.25);
    border-color: rgba(226, 70, 224, 0.3);
}

.rank-card:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% { transform: rotate(30deg) translate(-10%, -10%); }
    100% { transform: rotate(30deg) translate(10%, 10%); }
}

.rank-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: inherit;
}

.rank-name {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rank-price {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.rank-price::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.rank-description {
    margin-bottom: 2.5rem;
    text-align: left;
    padding: 0 1rem;
}

.rank-description p {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.rank-description p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.buy-button {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(226, 70, 224, 0.3);
    position: relative;
    overflow: hidden;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(226, 70, 224, 0.4);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .store-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .store-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .store-hero .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .ranks-container {
        grid-template-columns: 1fr;
    }
    
    .rank-card {
        padding: 2rem;
    }
}