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

html, body {
    height: 100%;
}

body {
    font-family: 'SlotsCity', Arial, sans-serif;
    text-align: center;
    background: url('../images/back.webp') no-repeat center center; 
    background-size: cover;
    background-attachment: fixed;  
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0;
    height: 110vh;
    text-transform: uppercase;
}


.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.logo {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    padding: 10px
}

.logo-slot{
    height: 80%
        
}

.text {
    height: 20vh;
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    color: #fcc000;
    font-size: 2.5rem;

}

.text h1{ 
    color: white
}

.tel {
    height: 60vh;
    display: flex;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.tel img{
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.btn {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    width: 90%;
    margin: auto;
}

.download-btn {
    background-color: #ffcc00;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 2vh;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    animation: pulse 3s infinite;
}

.download-btn:hover {
    background-color: #bf9100;
}

.disk-foot {
    object-fit: fill;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer{
    width: 100%;
    height: 100%;
}

/* Базовый стиль для контейнера */
.floating-coins {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Скрываем монеты за пределами окна */
}

/* Базовый стиль для монет */
.coin {
    position: absolute;
    animation: floatCoin 10s linear infinite; /* Анимация движения */
}

.coin-1 {
    top: 40%;
    right: 10%;
    height: 9%;
    animation-duration: 16s;
}

.coin-2 {
    top: 50%;
    left: 10%;
    height: 12%;
    animation-duration: 18s;
    animation-delay: 1s; /* Задержка перед началом */
}

.coin-3 {
    top: 70%;
    right: 8%;
    height: 8%;
    animation-duration: 17s;
    animation-delay: 2s;
}

/* Анимация "плавания" */
@keyframes floatCoin {
    0% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-30px) translateX(10px) scale(1.1);
    }
    50% {
        transform: translateY(10px) translateX(-20px) scale(1);
    }
    75% {
        transform: translateY(-20px) translateX(15px) scale(0.9);
    }
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
    
    .text {
        height: 20vh;
        display: flex;
        padding: 5px;
        justify-content: center;
        align-items: center;
        color: #fcc000;
        font-size: 5vw;

    }

}
