.shop-container {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    pointer-events: auto;
}

.shop-title {
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    font-size: 1.5rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.shop-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
}

.shop-item:hover {
    border-color: #00ff00;
    transform: translateY(-10px);
    background: rgba(0, 255, 0, 0.05);
}

.shop-item.featured {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.item-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.shop-item h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    margin: 15px 0;
}

.shop-item p {
    font-size: 0.85rem;
    color: #ccc;
    height: 60px;
}

.price {
    font-family: 'Press Start 2P', cursive;
    color: #00ff00;
    font-size: 1.2rem;
    margin: 20px 0;
}

.buy-btn {
    background: #00ff00;
    border: none;
    padding: 10px 25px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.buy-btn:hover {
    background: #fff;
    transform: scale(1.05);
}