/* Подключение шрифтов */
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/wp-content/themes/bk-pari/assets/fonts/ibm-plex-sans/IBMPlexSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans Bold';
    src: url('/wp-content/themes/bk-pari/assets/fonts/ibm-plex-sans/IBMPlexSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans Italic';
    src: url('/wp-content/themes/bk-pari/assets/fonts/ibm-plex-sans/IBMPlexSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'IBM Plex Sans BoldItalic';
    src: url('/wp-content/themes/bk-pari/assets/fonts/ibm-plex-sans/IBMPlexSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* Применение шрифта */
body {
    font-family: 'IBM Plex Sans', sans-serif;
}


#header, #footer, h1 {
    display: none;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.freebet-page {
    width: 100%;
	background: #121416;
	margin-top: -10px;
    margin-bottom: -10px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
	background: url(/wp-content/themes/bk-pari/assets/images/banner1.png);
    overflow: hidden;
    padding: 80px 20px;
	background-position: center;
    background-size: contain;
    background-repeat: repeat-x;
	margin: 8px;
    border-radius: 16px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    /* max-width: 800px; */
    width: 100%;
}

/* Logo */
.hero-logo {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logo-text {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 2px;
}

.logo-arrow {
    font-size: 48px;
    color: var(--color-teal);
    font-weight: 300;
}

/* Hero Title */
.hero-title {
    margin-bottom: 50px;
}

.title-line {
    font-size: 48px;
    font-family: 'IBM Plex Sans Bold', sans-serif;
    color: #fff;
	text-transform: uppercase;
	line-height: 16px;
}

.title-accent {
    font-size: 48px;
    font-family: 'IBM Plex Sans Bold', sans-serif;
    color: #BDEE00;
	text-transform: uppercase;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 24px;
    background-color: #00A391;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #009f7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.welcome-button {
    width: 100%;
    margin: 24px 0 96px 0;
}

/* Welcome Section */
.welcome-section {
    padding-top: 96px;
    position: relative;
	text-align: justify;
}

.section-title {
    font-size: 32px;
    font-family: 'IBM Plex Sans Bold', sans-serif;
    margin-bottom: 16px;
    color: #fff;
}

.welcome-content {
    max-width: 632px;
    margin: 0 auto;
}

.welcome-text {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
}

.welcome-text h2{
	font-size: 32px;
    font-family: 'IBM Plex Sans Bold', sans-serif;
    color: #fff;
	text-align: center;
	margin: 13px 0 16px 0;
}

.welcome-text h3{
	font-size: 24px;
    font-family: 'IBM Plex Sans Bold', sans-serif;
    color: #fff;
	text-align: center;
	margin: 13px 0 16px 0;
}

.welcome-text p{
	opacity: 60%;
}

.welcome-text ul{
	margin-left: 15px;
	opacity: 60%;
}

/* FAQ Section */
.faq-section {
    padding-top: 96px;
    position: relative;
	text-align: center;
	margin: 8px;
    border-radius: 16px;
	border: 1px solid #FFFFFF1A;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
	margin: 24px auto 0 auto;
}

.faq-item {
    background-color: #292C2F;
    border-radius: 16px;
    padding: 24px;
}

.faq-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question {
    font-size: 18px;
    font-family: 'IBM Plex Sans Bold', sans-serif;
    color: #fff;
    line-height: 1.4;
	margin-top: 6px;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
	text-align: left;
	opacity: 60%;
}

.faq-text{
	font-size: 14px;
    line-height: 1.7;
	color: #fff;
	text-align: center;
}

.faq-answer ul {
    margin-left: 15px;
}

.faq-section-banner-bottom{
	width: 100%;
    margin-top: -350px;
}

@media (max-width: 1024px) {

    .hero-section {
        min-height: 520px;
		background-size: cover;
    }
	
	.title-accent{
		line-height: 48px;
	}
	
	.title-line{
		line-height: 48px;
	}
	
	.faq-question{
		text-align: left;
	}
	
	.welcome-section {
		padding-top: 64px;
	}
	
	.faq-section {
		padding-top: 64px;
	}
	
	.welcome-button {
		margin: 24px 0 64px 0;
	}

}
