.test {
  margin: auto;
  padding: 10px;
  width: 90%;
  overflow: auto; 
}

.test1 {
  margin: auto;
  padding: 10px;
  font-size: 12px;
  
}

.foot {
  margin: auto;
  padding: 10px;
  width: 90%;
}

table {

margin: 0 auto; /* Автоматические отступы по горизонтали для центрирования */

}


 table {
            
            border-collapse: collapse;
            margin: 20px auto;
            
        }
        th, td {
            border: 1px solid white; /* Change border color to white */
            text-align: center;
            padding: 8px;
        }

body {
	font-family: 'Montserrat', sans-serif;
            background-color: #3b1410; /* Dark background */
            color: #fff; /* White text */
            margin: 0;
            padding: 20px;
            max-width: 900px; /* Maximum width set to 900px */
            margin-left: auto; /* Centering */
            margin-right: auto; /* Centering */
            
            text-align: center;
        }
.mainblock {            
  border: 5px solid transparent; /* Прозрачная рамка для создания эффекта */
            border-radius: 15px; /* Закругление углов */
            padding: 20px; /* Отступ внутри блока */
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Легкий светящийся эффект */
            animation: shimmer-border 3s linear infinite; /* Анимация пересвечивания */
            margin-top: 40px; /* Верхний отступ для разделения блоков */           
}

 @keyframes shimmer-border {
            0% {
                border-color: #8B7031; /* Темное золото */
            }
            50% {
                border-color: #FFD700; /* Светлое золото */
            }
            100% {
                border-color: #8B7031; /* Возвращение к темному золоту */
            }
        }

.download-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Ensure no underline initially */
    margin: 20px 0;
    background: linear-gradient(90deg, #e67e22, #ffc300); /* Darker Orange to Darker Yellow gradient */
    background-size: 200% 100%;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.5s, box-shadow 0.5s;
    animation: gradientAnimation 3s linear infinite; /* Start animation always */
}

.download-button:hover {
    animation: gradientAnimation 3s linear infinite;
    text-decoration: none; /* Remove underline on hover */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    
    100% {
        background-position: 100% 50%;
    }
}


a {
            color: #FFD700; /* Золотой цвет */
            text-decoration: none; /* Убирает подчеркивание */
            transition: color 0.3s; /* Плавный переход при наведении */
        }

        a:hover {
            color: #FFEA00; /* Более светлый золотой при наведении */
            text-decoration: underline; /* Добавляет подчеркивание при наведении */
        }

.footer {
        font-size: 12px;
        }
        
                .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 15px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }