@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');

body {
    font-family: "Dela Gothic One", serif;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111322;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

#logo {
    margin-top: -60px;
    height: 22%;
}
.container {
    text-align: center;
}

.circles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.circle {
    font-family: "Dela Gothic One", serif;
    width: 40px;
    height: 40px;
    border: 2px dashed white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    background-color: transparent;
}

.coin {
    font-family: "Dela Gothic One", serif;
    width: 300px;
    height: 300px;
    background-image: url('img/placeholder.png'); /* Загрузка картинки-заглушки */
    background-size: cover;
    background-position: center;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 100px;
    text-align: center;
}

.hidden {
    display: none;
}

.button {
    font-family: "Dela Gothic One", serif;
    display: block;
    margin: 10px auto;
    padding: 15px 30px;
    background: linear-gradient(180deg, #ffb93a, #ff8d0f);
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    width: 200px;
    box-shadow: 0 0 30px rgba(255, 120, 0, 0.8);
}

#getSignal {
    width: 250px;
    font-size: 22px;
}

.button.reset {
    margin-top: 10px;
    width: 250px;
    font-size: 22px;
}

.button:hover {
    background-color: #ff7700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.circle img {
    animation: fadeIn 0.5s ease-in-out;
}

.coin {
    animation: fadeIn 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
    #logo {
        margin-top: -30px;
        height: 22%;
    }

    .circle{
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .coin {
        width: 280px;
        height: 280px;
}

@media screen and (max-width: 480px) {
    #logo {
        margin-top: -30px;
        height: 22%;
    }

    .circle{
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .coin {
        width: 280px;
        height: 280px;
}
