/* Global Styles */
body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Container Styles */
#container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DVD Logo Styling */
#dvd-logo,
.dvd-logo {
    position: absolute;
    width: 100px;
    height: 50px;
    background: url('/assets/images/DVD_logo.svg.png') no-repeat center/contain;
}

/* DVD Logo Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Main Button Styling */
.mainButton {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainButton button {
    background: #0026ffa6;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.mainButton button:hover {
    background: #0026ffd5;
}

.mainButton div {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
}

/* Shop Container Styles */
#shopContainer {
    position: absolute;
    top: 10px; /* Abstand vom oberen Rand */
    left: 10px; /* Abstand vom linken Rand */
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Abstand zwischen den Items */
    padding: 10px;
    background: rgba(0, 0, 0, 0.7); /* Halbtransparenter Hintergrund */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Shop Item Styling */
.shopItem {
    position: relative;
    width: 100px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}

.shopItem:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.shopItemImage {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.shopDesc {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
    width: 200px;
    top: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: calc(100vw - 20px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.shopItem:hover .shopDesc {
    display: block;
}

/* Video Container Styling */
.subwaySurfersVideo {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 400px;
    height: 300px;
}
