.mainMenu {
    margin: 0;
    height: 100vh;
    width:100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    font-family: Arial, sans-serif;
    color: white;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 300px;
}

.button {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.button:hover {
    transform: scale(1.05);
}

.play-button {
    background: linear-gradient(to right, #22c55e, #059669);
    color: white;
}

.play-button:hover {
    background: linear-gradient(to right, #16a34a, #047857);
}

.shop-button {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.shop-button:hover {
    background: rgba(255, 255, 255, 0.1);
}
.shop-container {
    width:100%;
    height:100%;
    display:none;
    overflow: hidden;
}
.shop-container iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    background: none;
   
}
.shop-back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
    border: 5px solid #7f1d1d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.shop-back-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ef4444, #dc2626);
}