@font-face {
    font-family: 'Elms Sans';
    src: url('/assets/fonts/ElmsSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; 
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

* {
    font-family: 'Elms Sans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0f0f0f;
    color: #fff;
}

a {
    text-decoration: none;
    color: #e9c05f;
    font-weight: 700;
}

p {
    font-size: 16px;
    margin: 10px 0;
}

h1 {
    margin-block: 0.67em;
    font-size: 2em;
}

ul, ol {
    padding: 0 20px;
}

.header-content {
    padding: 10px 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-section .logo {
    height: 40px;
    width: auto;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #80858f;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover {
    transform: scale(1.05);
    color: #fff;
}

.nav-link.new-tag {
    position: relative;
}

.nav-icon {
    width: 26px;
}

.tag {
    background-color: #ff0000;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    white-space: nowrap;
    display: inline-block;
    padding: 8px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.btn-download,
.btn-register,
.btn-banner {
    background-color: #b30000;
    color: #fff;
}

.btn:hover {
    background-color: #cc0000;
    transform: translateY(-1px);
}

.language-selector {
    position: relative;
    cursor: pointer;
}

.language-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
}

.flag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-icon {
    width: 24px;
    height: 16px;
    display: block;
}

.arrow {
    font-size: 10px;
    color: #999;
    transition: transform 0.3s;
}

.language-selector.active .arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 7px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #fff;
    text-decoration: none;
}

.language-option:first-child {
    border-radius: 6px 6px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 6px 6px;
}

.language-option:hover {
    background-color: #2a2a2a;
}

.language-option .flag-wrapper {
    flex-shrink: 0;
}

.page-container {
    display: flex;
}

.menu {
    width: 280px;
    background-color: #1a1a1a;
    border-right: 1px solid #333;
    padding: 7px;
    flex-shrink: 0;
}

.sidebar-logo-img {
    display: block;
    margin: 0 auto;
    height: 50px;
    width: auto;
    aspect-ratio: auto;
}

.mobile-logo {
    display: none;
    height: 30px;
    width: auto;
}

.sidebar-menu {
    position: sticky;
    top: 20px;
    z-index: 1000;
    padding: 0 20px;
}

.menu-section {
    margin: 20px 0;
}

.menu-section-title {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 0 10px;
}

.menu-list {
    list-style: none;
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 10px;
    color: #80858f;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.menu-item a:hover {
    transform: scale(1.05);
    color: #fff;
}

.menu-icon {
    width: 26px;
    text-align: center;

}

.divider {
    height: 1px;
    background: linear-gradient(90deg,#0000,#e9c05f,#0000);
    margin: 20px 0;
}

.main-content {
    width: 100%;
    flex: 1;
    padding: 0 10px;
    background-color: #0f0f0f;
}

.promo-banners {
    margin:20px 0;
    display:flex;
    gap:30px;
}

.promo-banner { 
    position:relative;
    border-radius:12px;
    overflow:hidden;
    aspect-ratio:16/9;
    width:100%;
    background:#1a1a1a;
}

.promo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    display: flex;
    align-items: center;
    padding: 15px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.banner-text {
    position: relative;
    z-index: 3;
}

.banner-title {
    font-size: clamp(1.5rem, 5vw, 6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: clamp(1rem, 2vw, 2rem);
    color: #fff;
    margin-bottom: 10px;
}

.banner-highlight {
    background: linear-gradient(180deg, rgba(255, 212, 2, 1) 0%, rgba(253, 155, 1, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 6rem);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.btn-banner {
    font-size: clamp(1rem, 2vw, 2rem);
    padding: 15px;
    text-transform: uppercase;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ff0000;
    color: #fff;
}

.btn-outline:hover {
    background-color: #ff0000;
}

.casino-section,
.thematic-section {
    min-height: 350px;
    margin-top: 60px;
    padding: 0 10px;
}

.kasino-subtitle-line {
    min-width: 280px;
    position: relative;
    background: linear-gradient(90deg,#0000,#e9c05f,#0000);
    height: 1px;
    margin: 10px 0 25px;
}

.kasino-subtitle-line:before {
    width: 112px;
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%);
    height: 3px;
    border-radius: 100px;
    background: #e9c05f;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 16px;
    color: #999;
}

.section-action {
    text-align: center;
}

.kasino-tags-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.kasino-tags-item {
    text-align: center;
    padding: 0 10px;
    transition: transform .2s ease;
}

.kasino-tags-item:hover {
    transform: scale3d(1.13, 1.13, 1);
}

.kasino-tags-item-text {
    color: #80858f;
    font-size: 15px;
    transition: color .2s ease;
}

.kasino-tags-item:hover .kasino-tags-item-text {
    color: #fff;
}

.kasino-tags-line {
    position: relative;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #e9c05f 50%, rgba(0, 0, 0, 0) 100%);
    min-width: 100%;
    height: 1px;
    margin: 10px 0 25px;
}

.kasino-tags-line:before {
    width: 20px;
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%);
    height: 3px;
    border-radius: 100px;
    background: #e9c05f;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 1300px;
    min-height: 350px;
    width: 100%;
}

.game-card {
    aspect-ratio: 200 / 154;
}

.game-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #1a1a1a; 
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    aspect-ratio: 200 / 154;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
    visibility: visible;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.btn-game {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-play {
    background-color: #ff0000;
    color: #fff;
    gap: 8px;
}

.btn-play:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.play-icon {
    font-size: 12px;
}

.btn-demo {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-demo:hover {
    background-color: #fff;
    color: #000;
}

/* Step cards (Pinco oyna nasıl yapılır) */
.steps-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin: 20px 0;
    list-style: none;
    padding: 0;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    border-color: rgba(233, 192, 95, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.step-card-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9c05f 0%, #dd9a00 100%);
    color: #0f0f0f;
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
}

.step-card-body {
    flex: 1;
}

.step-card-body strong {
    display: block;
    color: #e9c05f;
    font-size: 15px;
    margin-bottom: 6px;
}

.step-card-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #ccc;
}

.thematic-grid {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.sport-subtitle-line {
    position: relative;
    background:  linear-gradient(90deg, #0000, #e9c05f, #0000);;
    min-width: 280px;
    height: 1px;
    margin: 10px 0 25px;
}

.sport-subtitle-line:before {
    width: 112px;
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%);
    height: 3px;
    border-radius: 100px;
    background: #e9c05f;
}

.thematic-card {
    position: relative;
    width: 200px;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 80px 0 10px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.thematic-card:hover {
    background-color: #2a2a2a;
    border-color: #00d4aa;
    transform: translateY(-5px);
}

.thematic-icon {
    position: absolute;
    top: -20px;
    left: -50%;
    transform: translateX(50%);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.thematic-img {
    max-width: 220px;
    max-height: 115px;
    object-fit: contain;
}

.thematic-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.content-article {
    max-width: 1200px;
    margin: 60px auto;
    color: #fff;
    line-height: 1.7;
}

.content-article h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: center;
    border-bottom: 3px solid #b30000;
}

.content-article h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.content-article h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-article p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-article p:last-child {
    margin-bottom: 0;
}

.content-article b {
    font-weight: 600;
    color: #fff;
}

.content-article img {
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.content-article table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    overflow: hidden;
}

.table-wrapper {
    margin: 40px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}

.btn-article {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    margin: 0px auto;
    height: 50px;
    background-color: #b30000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

picture {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

picture img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.content-article table td, th {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    color: #e0e0e0;
    font-size: 15px;
    vertical-align: top;
}


.content-article table th {
    background-color: #2a2a2a;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-article table tr:hover:not(thead tr) {
    background-color: #222;
}

.content-article table td:first-child {
    width: 25%;
    font-weight: 500;
    color: #fff;
}

.content-article table td b {
    color: #fff;
    font-weight: 600;
}

.custom-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 30px 0;
}

.custom-list li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.7;
}

.custom-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff2400, #ff6b00);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(255, 36, 0, 0.3);
}

.custom-list li strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-list li p {
    margin: 0;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
}

.custom-list li:last-child {
    margin-bottom: 0;
}

.site-footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 60px 20px 40px;
    margin: 0 -10px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}


.footer-apk {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-apk {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 15px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apk:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

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

.apk-icon svg {
    width: 100%;
    height: 100%;
    fill: #000;
}

.apk-text {
    display: flex;
    flex-direction: column;
    color: #000;
}

.apk-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.apk-subtitle {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: #787878;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    filter: brightness(0.8);
}

.footer-providers,
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.provider-logo,
.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    height: 40px;
}

.provider-logo:hover,
.payment-logo:hover {
    opacity: 1;
}

.provider-img,
.payment-img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
}

.footer-support {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.support-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background-color: #fff;
    color: #000;
}

.support-icon {
    width: 24px;
}

.footer-legal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-gcb-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gcb-logo-img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.footer-age-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-icon-img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.footer-age-text {
    color: #999;
    font-size: 14px;
    margin: 0;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.footer-legal-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-legal-text p {
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.bonuses-section {
    min-height: 350px;
    margin-top: 60px;
    padding: 0 10px;
}

.bonuses-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bonus-stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    width: 100%;
}

.bonus-card {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.bonus-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    color: #fff;
}

.casino-badge {
    background-color: #921818;
}

.sport-badge {
    background-color: #ffd404;
    color: #000;
}

.bonus-card-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.bonus-card-description {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.bonus-card-content > .btn-bonus:last-child {
    margin-top: auto;
}

.bonus-countdown {
    margin: 10px 0;
}

.countdown-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.countdown-timer {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.timer-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.timer-label {
    font-size: 10px;
    color: #999;
    text-transform: lowercase;
    margin-left: 2px;
}

.timer-separator {
    font-size: 20px;
    color: #921818;
    font-weight: 700;
    margin: 0 2px;
}

.bonus-prize {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0;
}

.prize-label {
    font-size: 12px;
    color: #999;
}

.prize-amount {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.btn-bonus {
    background-color: #921818;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
}

.btn-bonus:hover {
    background-color: #a02020;
    transform: translateY(-2px);
}

.btn-bonus-details {
    background-color: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #333;
    cursor: pointer;
    width: 100%;
}

.btn-bonus-details:hover {
    background-color: #2a2a2a;
    border-color: #921818;
}

.bonus-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-card-actions .btn-bonus {
    flex: 1;
}

.bonus-info-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.bonus-info-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.bonus-info-btn svg {
    width: 18px;
    height: 18px;
}

.bonuses-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-bonus-outline {
    background-color: transparent;
    border: 2px solid #921818;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-bonus-outline:hover {
    background: #921818;
}

@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-providers,
    .footer-payments {
        gap: 20px;
    }

    .mobile-logo {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 2000;
        background-color: #000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
        padding: 7px;
    }
    
    .menu.active {
        left: 0;
    }
    
    .top-nav {
        display: none;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mobile-menu {
        display: flex !important;
    }
}

@media (max-width: 768px) {

    .promo-banners {
       flex-wrap:wrap;
    }

    .bonuses-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    
    .bonuses-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .bonuses-section {
        margin-top: 20px;
    }
    
    .mobile-display-none {
        display: none;
    }
    
    .btn-banner {
        padding: 7px;
    }
    
    .footer-age-text {
        min-width: 100%;
    }

    .gcb-logo-img {
        max-width: 120px;
    }

    .footer-legal-text {
        padding: 0 15px;
    }

    .footer-legal-text p {
        font-size: 11px;
    }
    
    .promo-banners {
        flex-direction: column;
        gap: 12px;
    }

    .promo-banner {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }
    
    .site-footer {
        padding: 40px 15px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .footer-providers,
    .footer-payments {
        gap: 15px;
    }

    .provider-img,
    .payment-img {
        max-width: 80px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .thematic-grid {
        display: grid;
        justify-items: center;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .thematic-card {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .casino-section,
    .thematic-section {
        margin-top: 20px;
    }

    .content-article h1 {
        font-size: 32px;
    }

    .content-article h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .content-article p {
        font-size: 15px;
    }

    .content-article table td {
        padding: 12px 15px;
        font-size: 13px;
        min-width: 120px;
    }

    .content-article table td:first-child {
        width: auto;
    }

    .mobile-guide-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .mobile-guide-card {
        padding: 20px;
    }
    
    .mobile-guide-card h3 {
        font-size: 18px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 16px 20px;
        font-size: 14px;
    }

    .text-and-image {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .kasino-tags-item-text {
        font-size: 12px;
    }

    .kasino-tags-wrap {
        overflow-x: scroll;
        width: 100%;
        justify-content: start;
    }

    .content-article h1 {
        font-size: 28px;
    }

    .content-article h2 {
        font-size: 22px;
    }

    .content-article table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .btn-apk {
        padding: 12px 20px;
    }

    .apk-icon {
        width: 32px;
        height: 32px;
    }

    .apk-title {
        font-size: 14px;
    }

    .apk-subtitle {
        font-size: 12px;
    }

    .footer-column-title {
        font-size: 16px;
    }

    .support-buttons {
        flex-direction: column;
        width: 100%;
    }

    .support-btn {
        width: 100%;
        justify-content: center;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    border-top: 1px solid #333;
    padding: 5px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
}

.mobile-menu.hidden {
    transform: translateY(100%);
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 60px;
    flex: 1;
}

.mobile-menu-item.active {
    color: #00d4aa;
}

.mobile-menu-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-toggle .mobile-menu-label {
    color: #ff2400;
    font-weight: 600;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}

.update-info {
    font-size: 14px;
    font-weight: 500;
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Mobile Experience Cards */
.mobile-guide-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.mobile-guide-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.mobile-guide-card.without-bg {
    background-color: transparent;
    border: none;
    padding: 0;
}

.mobile-guide-card.without-bg:hover {
    background-color: transparent;
    transform: none;
}

.all-platforms-img {
    max-width: 647px;
    height: auto;
}

.mobile-guide-card img {
    max-width: 300px;
    height: auto;
}

.sports-img {
    max-width: 900px;
    height: auto;
}

.mobile-guide-card:hover {
    background-color: #2a2a2a;
    transform: translateY(-5px);
}

.mobile-guide-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #b30000;
}

.mobile-guide-card ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.mobile-guide-card ol li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.mobile-guide-card ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #e9c05f;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.mobile-guide-card ol li:last-child {
    margin-bottom: 0;
}

/* FAQ Accordion */
.faq-accordion {
    margin: 30px 0;
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #e9c05f;
}

.faq-item[open] {
    border-color: #e9c05f;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-question::marker,
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
    left: 50%;
    top: 50%;
}

.faq-icon::before {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
}

.faq-icon::after {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-top: -8px;
}

.faq-answer p {
    margin: 0;
}

.text-and-image {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.text-inner {
    flex: 1;
}

.image-inner {
    flex: 1;
}

.image-inner img {
    margin: 0 auto;
}