* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: url('../img/back.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-top: 50px;
}

.container {
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    margin-bottom: 20px;
}

.lang-switch {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    transition: 0.3s ease-in-out;
    z-index: 9999;
    font-size: 14px;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.3);
}

.winamp-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.btn {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    color: black;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    outline: none;
    text-transform: uppercase;
}

.btn:hover {
    background: linear-gradient(45deg, #ff9900, #ff6600);
    transform: scale(1.05);
}

.pricing-container {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.pricing {
    list-style: none;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: white;
    width: 230px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out;
    font-size: 14px;
}

.pricing:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Карусель отзывов */
.reviews-container {
    margin-top: 30px;
    max-width: 800px;
    text-align: center;
    position: relative;
}

.review {
    display: none;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: opacity 0.5s ease-in-out;
}

.review.active {
    display: block;
    opacity: 1;
}

.review img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffcc00;
    margin-bottom: 8px;
}

.review h4 {
    color: #ffcc00;
    margin: 5px 0;
    font-size: 16px;
}

.review p {
    font-size: 12px;
    color: white;
}

.review-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.review-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

.review-btn:hover {
    background: rgba(255, 255, 255, 0.6);
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon img {
    width: 30px;
    height: 30px;
}