/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Gilroy';
    color: #fff;
    overflow: hidden; /* Убираем скролл, чтобы игроки были на весь экран */
}

/* Основная обертка с фоном */
.wrapper {
    position: relative;
    height: 100%;
    /* Фон с игроками, растянутый на весь экран, сдвинутый вправо */
    background: url('image_8.png') no-repeat right bottom / contain, 
                radial-gradient(circle at center, #163e8c 0%, #061129 100%);
}

/* Слой поверх фона для лучшей читаемости текста */
.background-overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 17, 41, 0.4); /* Полупрозрачный синий слой */
    z-index: 1;
}

/* Контейнер */
.container {
    max-width: 95%;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.relative { position: relative; z-index: 5; }

/* Шапка */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.logo { height: 45px; }
.age-badge { height: 90px; }

/* Промо-блок (текст и кнопка) */
.promo-box {
    flex-grow: 1; /* Занимает все доступное пространство */
    display: flex;
    align-items: center; /* Центрирует по вертикали */
}

.text-content {
    display: grid;
    max-width: 100%;
    justify-items: center;
}

/* Игроки */
.players-image {
	position: absolute;
    right: 0;
    display: flex;
    height: 85%;
    z-index: 1;    
    align-items: center;
}

.players-image img {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
	padding: 0 40px 0 0;
}

h1 {
    font-size: 100px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.bonus-amount {
    font-size: 120px;
    font-weight: 900; /* Самый жирный шрифт */
	margin-bottom: 5px;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}

.subtitle {
    font-size: 55px;
    letter-spacing: 3px;
	font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;    
    border-radius: 100px;      /* Полностью круглые края */    
    position: relative;
    overflow: hidden;          /* Чтобы блик не выходил за края */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    cursor: pointer;
}

.cta-button img { height: 125px; } /* Примерная высота кнопки */

.cta-button:hover {
    transform: translateY(-5px) scale(1.03); /* Всплытие и легкое увеличение */
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2), 
                0 0 15px rgba(76, 137, 255, 0.4); /* Двойное свечение */
    color: #163e8c;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 150%; /* Блик пролетает при наведении */
}

/* Эффект нажатия (кнопка вдавливается) */
.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}
/* Футер */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 30px;
	z-index: 2;
}

.bottom-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-buttons img { 
	height: 45px;
	cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;	
	}
	
.app-buttons img:hover { opacity: 1; }

/* Эффект нажатия (кнопка вдавливается) */
.app-buttons img:active {
    transform: translateY(-1px) scale(0.98);
}

.terms-link {
    color: #4c89ff; /* Синий цвет ссылки */
    text-decoration: underline;
    font-size: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    height: 45px;
	cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icons img:hover { opacity: 1; }

/* Эффект нажатия (кнопка вдавливается) */
.social-icons img:active {
    transform: translateY(-1px) scale(0.98);
}
/* Адаптив для мобильных устройств */

@media (max-width: 1700px) {
h1 { font-size: 80px; }
.bonus-amount { font-size: 100px; }
.subtitle { font-size: 40px; }   
.players-image { height: 80%; } 
} 

@media (max-width: 1500px) {
h1 { font-size: 75px; }
.bonus-amount { font-size: 90px; }
.subtitle { font-size: 35px; }   
.players-image { height: 75%; } 
.cta-button img { height: 110px; }
.age-badge { height: 80px; }
.app-buttons img { height: 40px; }
.social-icons img { height: 40px; }
.terms-link { font-size: 17px; }
} 

@media (max-width: 1400px) {
h1 { font-size: 65px; }
.bonus-amount { font-size: 80px; }
.subtitle { font-size: 25px; }   
.players-image { height: 60%; } 
.cta-button img { height: 90px; }
.age-badge { height: 70px; }
.app-buttons img { height: 35px; }
.social-icons img { height: 35px; }
.terms-link { font-size: 15px; }
} 

@media (max-width: 1150px) {
h1 { font-size: 60px; }
.bonus-amount { font-size: 75px; }
.subtitle { font-size: 20px; }   
.players-image { height: 50%; } 
.cta-button img { height: 85px; }
.age-badge { height: 70px; }
.app-buttons img { height: 35px; }
.social-icons img { height: 35px; }
.terms-link { font-size: 15px; }
} 

@media (max-width: 1000px) {	
	.header { padding: 30px 0; }
    .promo-box { display: block; }
	 h1 { font-size: 40px; }
	.bonus-amount { font-size: 70px; }
	.subtitle { font-size: 25px; margin-bottom: 20px; }   
	.players-image { height: 50%; } 
	.cta-button img { height: 65px; }
	.age-badge { height: 60px; }
	.app-buttons img { height: 30px; }
	.social-icons img { height: 30px; }
	.terms-link { font-size: 12px; }	
	.text-content { padding-bottom: 30px; }		
    .players-image { width: 100%;height: auto; display: flex; justify-content: center; }
    .players-image img { width: 100%;max-width: 500px; height: auto; object-fit: contain; padding: 0;}
	.text-content { text-align: center; }
}
@media (max-width: 610px) {	
	.header { padding: 20px 0; }
	.logo { height: 35px; }
	 h1 { font-size: 35px; }
	.bonus-amount { font-size: 60px; }
	.subtitle { font-size: 20px; margin-bottom: 15px; }   
	.players-image { height: 50%; } 
	.cta-button img { height: 65px; }
	.age-badge { height: 55px; }
	.app-buttons img { height: 28px; }
	.social-icons img { height: 28px; }
	.terms-link { font-size: 11px; }	
	.text-content { padding-bottom: 20px; }		
    .players-image { width: 100%;height: auto; display: flex; justify-content: center; }
    .players-image img { width: 100%;max-width: 450px; height: auto; object-fit: contain; padding: 0;}
}
@media (max-width: 535px) {	
	.header { padding: 15px 0; }
	.logo { height: 30px; }	
	.bonus-amount { font-size: 50px; }	
    .footer { position: static; width: 100%; flex-direction: column; align-items: center;gap: 8px;}
}
@media (max-width: 460px) {		
	.logo { height: 25px; }	
	.bonus-amount { font-size: 50px; }	
    .footer { position: static; width: 100%; flex-direction: column; align-items: center;gap: 8px;}
	.age-badge { height: 45px; }
}