@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
 	font-family: "Inter", sans-serif;
    font-style: normal;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 22px;
}

@media screen and (max-width: 768px) {
	h2 {
		font-size: 26px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 20px;
	}
}

/* General container */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

#primary {
    padding: 60px 0;
}

.main-pages {
	padding-bottom: 60px;
	padding-top: 60px;
}

.hp_sch-left {
    padding-bottom: 30px;
}

.hp_sch-descr h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    margin: 0;
    padding: 10px 0;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0A3D62;
    padding: 15px;
    position: relative;
    z-index: 1002;
	transition: all 0.3s ease;
}

/* Sticky style on scroll */
.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0A3D62;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeDown 0.3s ease;
}

/* Logo shrink inside .site-branding */
.site-header .site-branding img {
    transition: all 0.3s ease;
    height: auto;
    width: 245px;
    min-width: 245px;
}

.site-header.is-sticky .site-branding img {
    width: 200px;
    min-width: 200px;
}

/* Optional fade animation */
@keyframes fadeDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    display: flex;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.site-branding img {
    height: auto;
    width: 270px;
    min-width: 270px;
}

.main-navigation {
    flex-grow: 1;
    text-align: center;
}

.main-navigation ul.menu {
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-navigation ul.menu > li {
    position: relative;
    padding-right: 0;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 10px;
    display: inline-block;
    transition: opacity 0.3s;
	border-radius: 8px;
}

.main-navigation a:hover {
    opacity: 0.9;
	background: #ffffff29;
}

.main-navigation .last-join a {
	background: #2ecc71; 
	color: #000;
	
	
}

/* ▼ arrow for items with children */
.main-navigation .menu-item-has-children > a::after {
    content: "▾";
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.main-navigation ul.menu > li:hover > a::after {
    transform: rotate(180deg); /* flips ▾ into ▴ */
}

/* ===== DESKTOP SUBMENU STYLES ===== */
.main-navigation ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px 0;
    margin: 0;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-navigation ul.menu > li:hover > ul.sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.main-navigation ul.sub-menu li {
    display: block;
    padding: 0;
}

.main-navigation ul.sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #111;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: background 0.2s, color 0.2s;
	text-align: left;
}

.main-navigation ul.sub-menu a:hover {
    background-color: #f3f4f6;
    color: #000;
}

/* ===== MOBILE MENU STYLES ===== */
#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    z-index: 1003;
    padding: 0;
    margin-top: -10px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 260px;
    height: 100vh;
    background: #0A3D62;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease-in-out;
    z-index: 1002;
    padding: 1.5rem 1rem;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu button#mobile-menu-close {
    background: none;
    border: none;
    font-size: 26px;
    color: #FFFBFE;
    margin-bottom: 20px;
    cursor: pointer;
    display: block;
}

/* Mobile menu list */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 10px;
    position: relative;
}

.mobile-menu-list a {
    color: #FFFBFE;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px;
    font-family: "Inter", sans-serif;
}

/* Mobile submenu */
.mobile-menu-list .menu-item-has-children > a {
    padding-right: 30px;
    position: relative;
}

.mobile-menu-list ul.sub-menu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
}

.mobile-menu-list .menu-item-has-children.open > ul.sub-menu {
    display: block;
}

.mobile-menu-list ul.sub-menu li a {
    padding: 8px 10px;
    color: #dfe6e9;
    font-size: 15px;
}

/* Toggle button (arrow) for submenu */
.mobile-menu-list .submenu-toggle {
    background: none;
    border: none;
    color: #FFFBFE;
    font-size: 18px;
    position: absolute;
    right: 8px;
    top: 22px;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    padding: 15px;
    cursor: pointer;
}

.menu-item-has-children.open > .submenu-toggle {
    transform: translateY(-50%) rotate(90deg);
}

/* Overlay behind mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.menu-overlay.visible {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #mobile-menu-toggle {
        display: block;
    }

    .header-nav {
        display: none;
    }
}

/* END Header */

/* Hero Header */

.hp_hero {
    background-position: center;
    background-repeat: no-repeat;
	background-size: cover;
    padding: 0;
    margin: 0;
    position: relative;
	background: linear-gradient(to bottom, #0A3D62 0%, #0F2C4C 60%, #081D33 100%);
}

/* .hp_hero::before {
    background: linear-gradient(180deg, rgba(37, 35, 35, 0.5) 87%, #2c3E50 100%);
    content: '';
    position: absolute;
    top: 0; 
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
} */

.hp_hero-wrap {
    max-width: 1140px; 
    margin: 0 auto;
    padding: 80px 15px;
    padding-right: 20%;
    position: relative;
    z-index: 2;
}

.hp_hero h1 {
    font-weight: 700;
    font-size: 38px;
    line-height: 120%;
    color: #fff;
    margin: 0;
    padding: 0 0 20px;
}

.hp_hero-descr  {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin: 0;
    padding-bottom: 15px;
}

.hp_hero-btn {
    padding: 15px 0;
}

.hp_hero-btn-discord {
    background-color: #0083e2;
    color: #fff;
    display: flex; 
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
    max-width: 200px;
}

.hp_hero-img {
    padding-top: 25px;
}

@media screen and (max-width: 768px) {
	
	.hp_hero h1 {
		font-size: 26px;
	}
	
	.hp_hero-wrap {
		padding-right: 15px;
		text-align: center;
		padding-bottom: 15px;
		padding-top: 15px;
	}
	
	.hp_hero-btn-discord {
		margin: 0 auto;
	}
}

/* END Hero Header */

/* Main content homepage */

.hp_maincontent {
	padding: 60px 0 20px;
}

@media screen and (max-width: 768px) {
	.hp_maincontent {
		padding: 20px 0;
	}
}

/* Main content homepage */
/* Blog Home */

.hp_blog {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.hp_blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
	align-items: stretch;
}

@media screen and (max-width: 768px) {
	 .hp_blog-grid {
		grid-template-columns: 1fr;

	}
}

.hp_blog-card {
    display: flex;
	flex-direction: column;
   	gap: 0;
    align-items: stretch;
    
}

.hp_blog-card-img {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
	max-height: 300px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.hp_blog-card-tag {
    border: 1px solid #FFCAA5;
    background-color: #FFF4EC;
    color: #F03000;
    padding: 6px 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
}

.hp_blog-card-tag a {
    color: #F03000;
    text-decoration: none;
}

.hp_blog-card-descr {
    padding: 10px;
	background-color: #fff;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	height: 100%;
}

.hp_blog-card-descr h3 {
    margin: 0;
    padding: 0 0 10px;
}

.hp_blog-card-descr h3 a {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: #252323;
    text-decoration: none;

}

.hp_blog-card-descr p {
    margin: 0;
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;

}

.hp_blog-card-more {
    color: #0083e2;
    font-size: 16px;
    margin-top: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-family: inherit;
  font-size: 16px;
}

.nav-links .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ccc;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.nav-links .page-numbers:hover {
  background-color: #002d53;
  color: #fff;
  border-color: #002d53;
}

.nav-links .current {
  background-color: #002d53;
  color: #fff;
  border-color: #002d53;
  font-weight: bold;
  pointer-events: none;
}
.category .container {
	padding-top: 60px;
	padding-bottom: 60px;
}

/* END Blog Home */


/* Offers Home */

.hp_offers {
    background-color: #F1F0EE;
}

.hp_offers .hp_section-hero h2 {
    color: #2c3E50;
}

.offers_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0 60px;
}

.offers_card {
    background-color: #fff;
    box-shadow: 0px 5px 25px 0px #00000014;    
    border-radius: 16px;
    display: grid;
    grid-template-columns: 0.7fr 1.4fr 0.8fr 0.8fr;
	gap: 10px;
	align-items: center;
}

.offers_card-top {
    text-align: center;
    padding: 20px 10px;
	background-color: #F0F4FE;
	height: 100%;
}

.offers_card-logo {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 60px;
}


.offers_card-middle {
	padding: 10px;
}

.offers_card-middle .op_details-info {
	text-align: left;

}

.offers_card-middle .payment-methods {
	justify-content: flex-start;
	flex-wrap: wrap;
}

.offers_card-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #405e7c;
    margin: 0;
    padding-top: 15px;
}


.offers_card-payment {
	padding: 10px;
}

.offers_card-payment .offers_card-payment-item  {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	padding-bottom: 5px;
}

.offers_card-payment .offers_card-payment-item:last-child  {
	padding-bottom: 0;
}

.offers_card-bonus {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #2c3E50;
    padding: 0 0 10px;
    margin: 0;
}

.offers_card-bottom {
 
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.offers_card-btn {
    display: inline-block;
    background-color: transparent;
    padding: 8px 20px;
    font-weight: 400;
	border-radius: 8px;
    font-size: 16px;
    line-height: 150%;
    color:  #2c3e50;
    text-decoration: none;
		width: 100%;
	text-align: center;

}

.offers_card-btn-round {
    display: inline-block;
    background-color: #2ecc71;
	
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
}

/* Rating Stars */
   
.star-score {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.star-score-text {
    font-weight: 600;
}

.star-row-star {
    color: #FFC145;
    margin-left: -5px;
    margin-right: 0;
    width: 20px !important;
    height: 22px !important;
    font-size: 16px !important;
    line-height: 16px !important;
    font-family: 'dashicons' !important;
}

.fa-star-half {
    width: auto;
}

.fa-star-half:before {
    background: #FFC145;
    color: #fff;
    padding: 2px 0 2px 2px;
}

.checked {
    color: #C9B037;
}

@media screen and (max-width: 768px) {
	.offers_card {
		grid-template-columns: 1fr;
	}
	.offers_card-middle {
		text-align: center;
	}
	
	.offers_card-middle .payment-methods {
		justify-content: center;
	}
	
	.offers_card-payment .offers_card-payment-item {
		text-align: center;
		justify-content: center;
	}
 
}

/* END Offers Home */

/* Top Players Home */

.hp_topPlayers {
    padding: 60px 0;
    background-color: #fff;
}

.top-players {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #DDDADA;
    box-shadow: 0px 4px 8px -2px #0000001A;
    border-radius: 6px;
    padding: 16px;
}

.player-card_avatar {
    width: 56px;
}

.player-card_avatar img, .player-card_rank img {
    width: 100%;
    height: auto;
}

.player-card_rank {
    width: 84px;
    margin-left: auto;
}

.player-name {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #2c3E50;
}

.player-wins {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #9B9595;
    margin: 0;
}

.winners .hp_section-hero h2 {
    color: #252323;
}

.winners .hop-poker_headers, .winners .hop-poker_head {
    background: transparent;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #9B9595;
}

.winners .hop-poker_row, .winners .hop-poker_headers {
    grid-template-columns: .4fr .6fr .6fr .4fr .4fr .4fr;
}

.winners .hop-poker_row:nth-child(even) {
    background-color: #F1F0EE;
}

.winners .hop-poker_row:nth-child(odd) {
    background-color: #fff;
}

.winners .hop-poker_descr {
    color: #252323;
}

/* END Top Players Home */


/* Poker operator page */

.op_wrapper {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.op_sidebar {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: left;
}

.back-link {
    color: #f1c40f;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
}

.op_sidebar-logo {
    padding: 15px 0;
}

.op_sidebar-bonus {
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
    padding: 0;
    margin: 0;
    color: #2c3E50;
}

.op_sidebar-name {
    color: #9B9595;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    margin: 0;
}

.op_sidebar-reviews {
    padding: 10px 0 20px;
}

.op_sidebar .offers_card-btn-round {
    width: 100%;
    text-align: center;
}

.opoker-content {
    padding-bottom: 40px;
}

.opoker-content p {
    color: #2c3e50;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.opProCons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px 0 40px;
}

.opProCons_card {
    box-shadow: 0px 12px 16px -4px #00000014;
    border-radius: 16px;
    padding: 32px;
    background-color: #ECFDF4;
}

.op_cons {
    background-color: #FFF4EC;
}

.opProCons_card h3 {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    padding-top: 10px;
}

.opProCons_list {
    padding-top: 25px;
}

.opProCons_list-item {
    padding-bottom: 10px;
}

.opProCons_list-item img {
    padding-right: 10px;
}

.opProCons_list-item:last-child {
    padding-bottom: 0;
}

.op_details-descr p {
    color: #9B9595;
}

.op_details-row {
    padding: 10px 0;
    border-top: 1px solid #9B9595;
}

.op_details-row:last-child {
    border-bottom: 1px solid #9B9595;
}

.op_details-column {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 10px;
    align-items: center;
}

.op_details-name h3 {
	font-size: 18px;

}

.op_details-info {
    text-align: right;
	padding-top: 10px;
}

.op_details-info-item {
    background-color: #FFF4EC;
    border: 1px solid #FFCAA5;
    padding: 2px 12px;
    border-radius: 4px;
    color: #F03000;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    margin-right: 5px;
}

.op_details-info-item:last-child {
    margin-right: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
	flex-wrap: wrap;
}

.payment-methods-img {
    box-shadow: 0px 4.78px 9.55px 0px #B7B7B714;
    border: 0.24px solid #D6DCE5;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 32px;
    border-radius: 4px;
}

.payment-methods-img img {
    width: 100%;
    max-width: 34px;
}

@media screen and (max-width: 768px) {
	.op_wrapper, .opProCons {
		grid-template-columns: 1fr;
	}
	
	.op_details-info .payment-methods {
		flex-wrap: wrap;
	}
	
	.op_sidebar-logo {
		max-width: 180px;
	}
	
	.op_sidebar-content {
		text-align: center;
	}
}

/* END Poker operator page */

/*  Stiri page */

.stiri-header {
    padding: 60px 0;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.stiri-header span {
    color: #F03000;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}

.stiri-header h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 120%;
    padding-top: 20px;
}

.stiri-header p {
    color: #9B9595;
    font-size: 18px;
}

.stiri-wrapper {
    padding-bottom: 60px;
}

.tabs-filter {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 10px 0 40px;
}

.tabs-filter a {
    padding: 10px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #F03000;
    text-decoration: none;
    background-color: #FFE7D3;
    cursor: pointer;
}

.tabs-filter a.active {
    color: #fff;
    background-color: #FF4E0A;
}

.tabs-filter a:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.tabs-filter a:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.post-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin: 10px 0 40px;
}

.post-item {
    overflow: hidden;
}

.post-item[data-category="jucatori"] .post-meta {
    display: none;
}

.post-item_img {
    min-height: 300px;
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.post-category a {
    display: inline-block;
    color: #F03000;
    padding: 20px 0 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.post-title {
    padding: 10px 0;
}

.post-title a {
    color: #2c3E50;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-decoration: none;
}

.post-excerpt p {
    color: #9B9595;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding: 0;
    margin: 0;
}

.post-meta {
    padding: 10px 0;
}

.post-thumbnail img {
	width: 100%;
}

.post-author {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #2c3E50;
    margin: 0;
}

.post-meta span {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #9B9595;
}

.container .single-post {
    padding: 60px 0;
    max-width: 768px;
    margin: 0 auto;
}

.single-post p {
    color: #9B9595;
}

.jucatori-layout {
    padding: 60px 0;
}

.jucatori-layout-header {
    display: grid;
    grid-template-columns: .6fr 1fr;
    gap: 40px;
    align-items: center;
}

.jucatori-layout-image {
    background-size: cover;
    background-position: center;
    min-height: 450px;
    border-radius: 4px;
}

.jucatori-layout-details h1 {
    padding: 20px 0 40px;
}

.player_details-item {
    padding-bottom: 10px;
}

.player_details-item:last-child {
    padding-bottom: 0;
}

.player_details-title {
    color: #9B9595;
    font-size: 16px;
    font-weight: 400;
}

.player_details-description {
    color: #2c3E50;
    font-size: 16px;
    font-weight: 700;
}

.custom-player-section {
    max-width: 768px;
    margin: 0 auto;
    padding: 30px 0;
}

.custom-player-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2c3E50;
}

@media screen and (max-width: 768px) {
	.post-list {
		grid-template-columns: 1fr;
	}

}

/* END Stiri page */



/* Bonusuri page */

.bonusuri_wrapper {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.bonusuri_sidebar-img {
    margin: 15px 0;
    border-radius: 16px;
    overflow: hidden;
}

.bonusuri_sidebar p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #9B9595;
    margin: 0;
    padding-bottom: 5px;
}

.bonusuri_sidebar p:last-child {
    padding-bottom: 0;  
}

.bonusuri_sidebar-logo {
    padding: 10px 0;
}

.bonusuri_sidebar .offers_card-btn-round {
    width: 100%;
    text-align: center;
}

.single-bonusuri .post-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #9B9595;
}

/* END Bonusuri page */

/* NEWSLETTER */

.newsletter-section {
  background: linear-gradient(to bottom, #0A3D62 0%, #0F2C4C 60%, #081D33 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.newsletter-container {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.newsletter-text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 25px;
}

.newsletter-form-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form-group input[type="email"] {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 70%;
  max-width: 300px;
}

.newsletter-form-group button {
  padding: 12px 20px;
  font-size: 16px;
  background-color: #0083e2;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form-group button:hover {
  background-color: #004080;
}

/* END NEWSLETTER */

/* FOOTER */

/* === FOOTER === */
.site-footer {
  background: linear-gradient(to bottom, #0A3D62 0%, #0F2C4C 60%, #081D33 100%);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

/* Main Grid Section */
.footer_main {
  padding: 60px 20px 30px;
}

.footer_grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Column Layout */
.footer_col h4 {
  color: #FFFBFE;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.footer_col ul li {
  margin-bottom: 8px;
}

.footer_col ul li a {
  color: #cce4ff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer_col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Logo Column */
.footer_col--logo .site-branding {
  margin-bottom: 20px;
}

.footer_col--logo .site-branding img {
	width: 100%;
	min-width: 100%;
	max-width: 240px;
}

.footer_description {
  font-size: 14px;
  color: #d8e6f5;
  margin-bottom: 15px;
}

.footer_socials {
  display: flex;
  gap: 10px;
}

.footer_socials .icon {
  display: inline-block;
  background: #fff;
  color: #0A3D62;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  transition: background 0.3s;
}

.footer_socials .icon:hover {
  background: #f3f3f3;
}

/* Bottom Bar */
.footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  background-color: #071C2F;
}

.footer_bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer_disclaimer {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.footer_copyright {
  font-size: 13px;
  color: #ccc;
}

.footer_logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 20px 0;
}

.footer_logos img {
  max-height: 22px;
  height: auto;
  width: auto;
}

.footer_extra.hidden {
  display: none;
}

.footer_toggle {
  display: inline-block;
  cursor: pointer;
  margin-top: 8px;
  color: #fff;
  transition: transform 0.3s ease;
}

.arrow_icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.footer_toggle.expanded .arrow_icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .footer_grid {
    text-align: center;
  }

  .footer_col ul {
    align-items: center;
  }

  .footer_socials {
    justify-content: center;
  }
}

/* END FOOTER */