* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 1;
    z-index: 1;
}

.logo-container {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 300px;
    width: auto;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.shop-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    z-index: 100;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.shop-button:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.shop-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .logo-container {
        max-width: 200px;
        bottom: 60px;
    }
    
    .shop-button {
        padding: 10px 24px;
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
}

