:root {
  --primary-color: #000000;
  --default: #ffffff;
  --secondary-color: #000000;
  --accent-color: #2F7FF3;      /* vivid blue highlight */
  --text-color: #FB0245;        /* neon magenta/pink */
  --light-text-color: #2F7FF3;  /* muted deep blue for secondary text */
}

body {
font-family: 'M PLUS Rounded 1c', sans-serif;
margin: 0;
padding: 0;
background-color: var(--primary-color);
color: var(--light-text-color);
line-height: 1.6;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
background-color: var(--secondary-color);
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 1000;
box-sizing: border-box;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-left {
display: flex;
align-items: center;
}

.logo {
color: var(--text-color);
font-size: 1.5rem;
font-weight: bold;
text-decoration: none;
margin-left: 100px;
margin-top: 5px;
display: flex;
align-items: center;
}

.logo-icon {
width: 40px;
height: 40px;
margin-right: 10px;
}

.hamburger-menu {
font-size: 24px;
cursor: pointer;
color: var(--text-color);
margin-right: 15px;
transition: all 0.3s ease;
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--accent-color);
border-radius: 8px;
}

.hamburger-icon {
position: relative;
width: 24px;
height: 24px;
}

.hamburger-icon span {
display: block;
position: absolute;
height: 3px;
width: 100%;
background: var(--text-color);
border-radius: 3px;
opacity: 1;
left: 0;
transform: rotate(0deg);
transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
top: 0px;
}

.hamburger-icon span:nth-child(2),
.hamburger-icon span:nth-child(3) {
top: 10px;
}

.hamburger-icon span:nth-child(4) {
top: 20px;
}

.cta-button {
background-color: var(--default);
color: var(--light-text-color);
padding: 10px 20px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
margin-right: 20px;
box-shadow: 0 2px 5px #1769FF;
}

.cta-button:hover {
background-color: var(--accent-color);
color: var(--default);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.side-nav {
position: fixed;
top: 70px;
left: 0;
height: calc(100% - 70px);
width: 60px;
background-color: var(--secondary-color);
overflow-x: hidden;
transition: 0.5s;
padding-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
box-shadow: 2px 0 5px rgba(0,0,0,0.1);
z-index: 999;
}

.side-nav.open {
width: 250px;
}

.nav-item {
display: flex;
align-items: center;
padding: 15px 10px;
color: var(--light-text-color);
transition: 0.3s;
width: 100%;
box-sizing: border-box;
text-decoration: none;
}

.nav-item:hover, .nav-item.active {
background-color: var(--accent-color);
color: var(--text-color);
}

.nav-icon {
font-size: 1.5rem;
width: 40px;
text-align: center;
}

.nav-text {
display: none;
margin-left: 10px;
}

.side-nav.open .nav-text {
display: inline;
}

.container {
margin-left: 60px;
padding-top: 70px;
transition: margin-left 0.5s;
padding-left: 50px;
padding-right: 50px;
}

.page-header {
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
padding: 50px;
border-radius: 15px;
margin-bottom: 3rem;
text-align: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}

.page-header::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 49, 148, 0.1) 0%, transparent 70%);
animation: float 20s infinite;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33% { transform: translate(-30px, -30px) rotate(120deg); }
66% { transform: translate(30px, -20px) rotate(240deg); }
}

.page-title {
font-size: 50px;
font-weight: 900;
color: var(--light-text-color);
margin-bottom: 20px;
position: relative;
z-index: 1;
}

.page-subtitle {
font-size: 1.2rem;
color: var(--light-text-color);
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
position: relative;
z-index: 1;
}

.stats-bar {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 30px;
flex-wrap: wrap;
position: relative;
z-index: 1;
}

.stat-item {
text-align: center;
background: rgba(255, 255, 255, 0.1);
padding: 15px 25px;
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease;
}

.stat-item:hover {
transform: translateY(-5px);
}

.stat-number {
font-size: 2rem;
font-weight: 900;
color: var(--text-color);
display: block;
}

.stat-label {
font-size: 0.9rem;
color: var(--light-text-color);
margin-top: 5px;
}

.games-section {
margin-bottom: 3rem;
background-color: #ecf6ff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.games-section:hover {
transform: translateY(-5px);
}

.section-title {
color: var(--text-color);
margin-bottom: 2rem;
font-size: 2.2rem;
border-bottom: 3px solid var(--accent-color);
padding-bottom: 15px;
text-align: center;
position: relative;
}

.section-title::after {
content: '';
position: absolute;
bottom: -3px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: var(--text-color);
}

.games-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 30px;
}

.game-category {
background-color: var(--secondary-color);
border-radius: 15px;
overflow: hidden;
transition: all 0.4s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
position: relative;
}

.game-category::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(23, 105, 255, 0.1), transparent);
transition: left 0.6s ease;
}

.game-category:hover::before {
left: 100%;
}

.game-category:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-header {
background: linear-gradient(135deg, var(--accent-color), var(--text-color));
padding: 25px 20px;
text-align: center;
color: var(--default);
position: relative;
overflow: hidden;
}

.category-header::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100px;
height: 100%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
transform: skewX(-20deg);
}

.category-icon {
font-size: 3.2rem;
margin-bottom: 12px;
display: block;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.category-title {
font-size: 1.4rem;
font-weight: bold;
margin-bottom: 8px;
}

.game-count {
background-color: rgba(255, 255, 255, 0.25);
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
display: inline-block;
font-weight: 700;
backdrop-filter: blur(10px);
}

.category-content {
padding: 25px;
}

.category-description {
font-size: 0.95rem;
color: var(--light-text-color);
margin-bottom: 20px;
line-height: 1.7;
}

.category-features {
margin-bottom: 25px;
}

.feature-item {
display: flex;
align-items: center;
margin-bottom: 10px;
font-size: 0.9rem;
color: var(--light-text-color);
transition: color 0.3s ease;
}

.feature-item:hover {
color: var(--text-color);
}

.feature-icon {
color: var(--text-color);
margin-right: 10px;
font-size: 1.1rem;
width: 20px;
text-align: center;
}

.play-button {
background: linear-gradient(135deg, var(--text-color), var(--accent-color));
color: var(--default);
padding: 14px 28px;
border: none;
border-radius: 25px;
cursor: pointer;
font-weight: bold;
font-size: 1rem;
transition: all 0.3s ease;
width: 100%;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 4px 15px rgba(255, 49, 148, 0.3);
}

.play-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255, 49, 148, 0.4);
background: linear-gradient(135deg, var(--accent-color), var(--text-color));
}

.featured-section {
margin-bottom: 3rem;
background-color: #ecf6ff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-games {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
margin-top: 25px;
}

.featured-game {
background-color: var(--secondary-color);
border-radius: 12px;
padding: 20px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
border: 2px solid transparent;
}

.featured-game:hover {
transform: translateY(-8px);
border-color: var(--accent-color);
box-shadow: 0 6px 20px rgba(23, 105, 255, 0.2);
}

.game-image {
width: 100%;
height: 130px;
background: linear-gradient(135deg, var(--accent-color), var(--text-color));
border-radius: 10px;
margin-bottom: 18px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.8rem;
color: var(--default);
position: relative;
overflow: hidden;
}

.game-image::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
animation: shine 3s infinite;
}

@keyframes shine {
0% { left: -100%; }
100% { left: 100%; }
}

.game-title {
font-size: 1.2rem;
color: var(--text-color);
margin-bottom: 8px;
font-weight: bold;
}

.game-type {
font-size: 0.9rem;
color: var(--light-text-color);
}

.promotional-area {
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
padding: 50px;
border-radius: 20px;
margin: 50px 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
}

.promotional-area::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(209, 0, 0, 0.1) 0%, rgba(15, 52, 96, 0) 70%);
animation: pulse 15s infinite;
}

@keyframes pulse {
0% {
transform: translate(0, 0);
}
50% {
transform: translate(-25%, -25%);
}
100% {
transform: translate(0, 0);
}
}

.promo-content {
flex: 1;
min-width: 300px;
z-index: 1;
}

.promo-title {
font-size: 2.2rem;
color: var(--text-color);
margin-bottom: 20px;
font-weight: 900;
}

.promo-description {
font-size: 1.3rem;
color: var(--light-text-color);
margin-bottom: 30px;
font-weight: 700;
}

.promo-cta {
background-color: var(--text-color);
color: var(--default);
padding: 18px 35px;
border-radius: 30px;
text-decoration: none;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
display: inline-block;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
text-transform: uppercase;
letter-spacing: 1px;
}

.promo-cta:hover {
background-color: var(--light-text-color);
color: var(--text-color);
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.promo-logo {
width: 200px;
height: auto;
margin-left: 30px;
filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
font-size: 4rem;
}

@media screen and (max-width: 1200px) {
.games-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 768px) {
.cta-button {
display: none;
}

.side-nav {
width: 0;
}

.side-nav.open {
width: 100%;
}

.container {
margin-left: 0;
padding-left: 20px;
padding-right: 20px;
}

.navbar {
justify-content: space-between;
}

.logo {
margin-left: -50px;
}

.page-header {
padding: 30px 20px;
}

.page-title {
font-size: 2.5rem;
}

.games-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.stats-bar {
gap: 20px;
}

.promotional-area {
position: fixed;
bottom: 0;
left: 0;
right: 0;
border-radius: 0;
margin: 0;
padding: 10px;
z-index: 1000;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 60px;
}

.promo-logo {
display: none;
}

.promo-title {
font-size: 1.3rem;
margin-bottom: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.promo-description {
display: none;
}

.promo-cta {
padding: 8px 15px;
font-size: 0.9rem;
}

.promo-content {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
}
.hero-casino-clean {
position: relative;
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.06);
min-height: 340px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2.5rem;
overflow: hidden;
}
.hero-content-inverted {
position: relative;
z-index: 2;
text-align: center;
width: 100%;
max-width: 740px;
margin: 0 auto;
padding: 48px 18px 38px 18px;
color: #45639a;
}
.hero-title-inverted {
font-size: 2.8rem;
font-weight: 900;
letter-spacing: 0.01em;
margin-bottom: 10px;
color: #ffffff;
position: relative;
display: inline-block;
}


.hero-subtitle-inverted {
font-size: 1.18rem;
font-weight: 500;
color: #45639a;
margin-bottom: 28px;
}
.hero-stats-ticker-inverted {
display: flex;
flex-wrap: nowrap;
justify-content: center;
gap: 14px;
margin-top: 16px;
overflow-x: auto;
scrollbar-width: none;
}
.hero-stats-ticker-inverted::-webkit-scrollbar {
display: none;
}
.hero-stat-pill {
background: #f6faff;
color: #1769FF;
font-weight: 700;
font-size: 1.01rem;
border-radius: 18px;
padding: 8px 18px;
box-shadow: 0 2px 8px rgba(23,105,255,0.07);
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 6px;
white-space: nowrap;
transition: background 0.2s, color 0.2s;
}
.hero-stat-pill:hover {
background: #eaf2ff;
color: #68F6F8;
}
@media (max-width: 900px) {
.hero-content-inverted {
padding: 32px 8px 22px 8px;
}
.hero-title-inverted {
font-size: 2rem;
}
.hero-title-solid-underline {
height: 4px;
width: 60px;
margin-bottom: 18px;
}
.hero-title-solid-underline::before {
width: 20px;
height: 4px;
}
.hero-stats-ticker-inverted {
flex-wrap: wrap;
gap: 8px;
justify-content: center;
font-size: 0.98rem;
}
}
.hero-title-solid-underline,
.hero-title-solid-underline-blue {
width: 80px;
height: 5px;
border-radius: 3px;
margin: 0.5rem auto 1.5rem auto;
display: block;
}
.hero-title-solid-underline-blue {
background: #1769FF;
}
.providers-section {
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.06);
padding: 48px 40px 36px 40px;
margin-bottom: 3rem;
font-family: 'M PLUS Rounded 1c', sans-serif;
text-align: center;
}
.section-title {
color: #68F6F8;
font-size: 2rem;
font-weight: 900;
margin-bottom: 28px;
text-align: center;
letter-spacing: 0.01em;
}
.providers-intro {
color: #45639a;
font-size: 1.08rem;
margin-bottom: 32px;
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
.providers-logos {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 28px;
margin-top: 12px;
}
.provider-card {
background: #f6faff;
border-radius: 14px;
box-shadow: 0 2px 8px rgba(23,105,255,0.07);
padding: 18px 22px 14px 22px;
display: flex;
flex-direction: column;
align-items: center;
min-width: 110px;
transition: transform 0.3s, box-shadow 0.3s;
}
.provider-card:hover {
transform: translateY(-6px) scale(1.05);
box-shadow: 0 6px 18px rgba(255,49,148,0.13);
}
.provider-logo {
width: 54px;
height: 54px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 2rem;
font-weight: bold;
margin-bottom: 10px;
box-shadow: 0 2px 10px rgba(23,105,255,0.10);
border: 3px solid #fff;
transition: box-shadow 0.3s;
}
.provider-name {
font-size: 1rem;
color: #45639a;
font-weight: 700;
letter-spacing: 0.02em;
}
@media (max-width: 768px) {
.providers-section { padding: 32px 10px 24px 10px; }
.providers-logos { gap: 16px; }
.provider-card { min-width: 80px; padding: 12px 8px 10px 8px; }
.provider-logo { width: 38px; height: 38px; font-size: 1.2rem; }
}
.faq-section {
background-color: #ecf6ff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
margin-bottom: 3rem;
}
.faq-list {
max-width: 750px;
margin: 0 auto;
}
.faq-item + .faq-item {
margin-top: 18px;
}
.faq-question {
width: 100%;
background: var(--secondary-color, #fff);
color: var(--light-text-color, #45639a);
font-family: inherit;
font-size: 1.15rem;
font-weight: bold;
padding: 18px 24px;
border: none;
border-radius: 10px;
text-align: left;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.2s;
box-shadow: 0 2px 5px rgba(23,105,255,0.06);
outline: none;
}
.faq-question[aria-expanded="true"] {
background: var(--accent-color, #1769FF);
color: #fff;
}
.faq-toggle {
font-size: 1.5rem;
margin-left: 8px;
transition: transform 0.3s, color 0.2s;
color: #68F6F8; /* Brand pink */
}
.faq-question[aria-expanded="true"] .faq-toggle {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
background: #fff;
color: var(--light-text-color, #45639a);
border-radius: 0 0 10px 10px;
box-shadow: 0 2px 8px rgba(23,105,255,0.08);
margin-top: 0;
padding: 0 24px;
font-size: 1rem;
line-height: 1.7;
transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.4s cubic-bezier(.4,0,.2,1), margin-top 0.4s cubic-bezier(.4,0,.2,1);
}
.faq-answer.open {
padding: 18px 24px 24px 24px;
margin-top: 2px;
max-height: 400px;
}

.trending-games-section {
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
padding: 50px 40px;
margin-bottom: 3rem;
font-family: 'M PLUS Rounded 1c', sans-serif;
}
.trending-games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
margin-top: 40px;
}
.trending-card {
background: #f9faff;
border-radius: 18px;
padding: 30px 25px 35px 25px;
text-align: center;
box-shadow: 0 6px 20px rgba(23,105,255,0.1);
transition: transform 0.4s ease, box-shadow 0.4s ease;
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
outline: none;
position: relative;
}
.trending-card:hover, .trending-card:focus {
transform: translateY(-12px) scale(1.05);
box-shadow: 0 12px 40px rgba(23,105,255,0.18);
background: #e6f0ff;
}
.trending-image-wrap {
width: 100%;
max-width: 280px;
aspect-ratio: 16 / 9;
border-radius: 15px;
overflow: hidden;
margin-bottom: 22px;
box-shadow: 0 4px 15px rgba(23,105,255,0.15);
background: #000000;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.trending-card:hover .trending-image-wrap, .trending-card:focus .trending-image-wrap {
box-shadow: 0 8px 30px rgba(23,105,255,0.22);
}
.trending-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 15px;
transition: transform 0.4s ease;
}
.trending-card:hover .trending-image, .trending-card:focus .trending-image {
transform: scale(1.07);
}
/* Cohesive circular badge */
.trending-badge-circle {
position: absolute;
top: 16px;
left: 16px;
width: 48px;
height: 48px;
border-radius: 50%;
color: #fff;
font-weight: 900;
font-size: 1.3rem;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(23,105,255,0.12);
border: 3px solid #fff;
z-index: 2;
letter-spacing: 0.04em;
opacity: 0.97;
background: #68F6F8; /* fallback, override with inline style */
}
.trending-title {
font-size: 1.3rem;
font-weight: 900;
margin-bottom: 14px;
color: #1769FF;
letter-spacing: 0.03em;
}
.trending-desc {
font-size: 1rem;
color: #45639a;
margin-bottom: 22px;
line-height: 1.5;
flex-grow: 1;
}
/* Unified button style */
.trending-link.btn-primary {
background: #68F6F8;
color: #fff;
padding: 14px 32px;
border-radius: 30px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: background 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 6px 20px rgba(255, 49, 148, 0.18);
width: 100%;
max-width: 220px;
margin: 0 auto;
display: inline-block;
text-align: center;
margin-top: auto;
border: none;
cursor: pointer;
}
.trending-link.btn-primary:hover, .trending-link.btn-primary:focus {
background: #1769FF;
box-shadow: 0 8px 30px rgba(23, 105, 255, 0.23);
outline: none;
}
@media (max-width: 768px) {
.trending-games-grid {
grid-template-columns: 1fr;
}
.trending-card {
max-width: 100%;
}
}
.getting-started-section {
background-color: #ecf6ff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
margin-bottom: 3rem;
}
.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 28px;
margin-top: 28px;
}
.step-card {
background: #fff;
border-radius: 12px;
padding: 28px 18px 20px 18px;
text-align: center;
box-shadow: 0 2px 8px rgba(23,105,255,0.08);
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
.step-card:hover {
transform: translateY(-6px) scale(1.03);
box-shadow: 0 8px 24px rgba(255,49,148,0.10);
}
/* Cohesive circular icon */
.step-icon-circle {
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 2rem;
font-weight: bold;
margin: 0 auto 14px auto;
box-shadow: 0 2px 10px rgba(23,105,255,0.10);
border: 3px solid #fff;
background: #68F6F8; /* fallback, override with inline style */
}
.step-title {
font-size: 1.15rem;
font-weight: bold;
margin-bottom: 10px;
color: #1769FF;
}
.step-desc {
font-size: 1rem;
color: #45639a;
margin-bottom: 0;
}
@media (max-width: 900px) {
.getting-started-section {
padding: 28px 8px 18px 8px;
}
.steps-grid {
gap: 18px;
}
}
.casino-experience {
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 48px 40px;
margin-bottom: 3rem;
font-family: 'M PLUS Rounded 1c', sans-serif;
}
.casino-experience .section-title {
margin-bottom: 28px;
color: #68F6F8;
font-size: 2rem;
font-weight: 900;
text-align: center;
}
.casino-text {
font-size: 1.08rem;
color: #45639a;
line-height: 1.8;
max-width: 900px;
margin: 0 auto;
text-align: left;
transition: max-height 0.6s cubic-bezier(.4,0,.2,1), padding 0.6s cubic-bezier(.4,0,.2,1);
overflow: hidden;
position: relative;
}
.casino-text.collapsed .read-more-extra {
display: none;
}
.casino-text .read-more-extra {
display: block;
}
.read-more-btn {
display: block;
margin: 18px auto 0 auto;
background: #68F6F8;
color: #fff;
padding: 12px 32px;
border-radius: 30px;
border: none;
font-weight: 700;
font-size: 1.08rem;
cursor: pointer;
box-shadow: 0 3px 12px rgba(255,49,148,0.13);
transition: background 0.2s;
}
.read-more-btn:hover,
.read-more-btn:focus {
background: #1769FF;
outline: none;
}
.footer {
background-color: var(--secondary-color);
color: var(--light-text-color);
padding: 40px 0;
margin-top: 50px;
}

.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: center;         /* Center all columns horizontally */
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
gap: 40px 24px;                  /* Add spacing between columns */
}

.footer-section {
min-width: 200px;
max-width: 240px;
margin-bottom: 20px;
flex: 0 1 220px;
display: flex;
flex-direction: column;
align-items: flex-start;         /* Align content to the left */
text-align: left;                /* Align text to the left */
}

.footer-title {
color: var(--text-color);
font-size: 1.2rem;
margin-bottom: 15px;
}

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

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
color: var(--light-text-color);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--text-color);
}

.footer-bottom {
text-align: center;
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icons {
display: flex;
gap: 15px;
justify-content: flex-start; /* Align social icons to the left */
margin-top: 8px;
width: 100%;
}

.social-icon {
color: var(--light-text-color);
font-size: 1.5rem;
transition: color 0.3s ease;
}

.social-icon:hover {
color: var(--text-color);
}

@media (max-width: 900px) {
.social-icons {
justify-content: flex-start; /* Keep left alignment on mobile */
}
}

/* Responsive for mobile */
@media (max-width: 900px) {
.footer-content {
flex-direction: column;
align-items: center;
gap: 0;
}
.footer-section {
max-width: 100%;
margin-bottom: 28px;
align-items: flex-start;       /* Still align left on mobile */
text-align: left;
}
}
.games-section-alt {
background: #ecf6ff; /* Soft lavender, light but not white or blue */
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.06);
padding: 48px 40px 36px 40px;
margin-bottom: 3rem;
font-family: 'M PLUS Rounded 1c', sans-serif;
text-align: center;
}
.section-title {
color: #68F6F8;
font-size: 2rem;
font-weight: 900;
margin-bottom: 28px;
letter-spacing: 0.01em;
}
.games-grid-alt {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
gap: 32px;
margin-top: 30px;
}
.game-category-alt {
background: #fff;
border-radius: 16px;
box-shadow: 0 2px 8px rgba(23,105,255,0.10);
overflow: hidden;
transition: transform 0.3s, box-shadow 0.3s;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: stretch;
position: relative;
min-width: 0;
}
.game-category-alt:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.category-header-alt {
padding: 32px 20px 20px 20px;
text-align: center;
}
.category-icon-alt {
width: 54px;
height: 54px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 2rem;
font-weight: bold;
margin: 0 auto 10px auto;
box-shadow: 0 2px 10px rgba(23,105,255,0.10);
border: 3px solid #fff;
}
.category-title-alt {
font-size: 1.2rem;
font-weight: 900;
color: #1769FF;
margin-bottom: 8px;
}
.game-count-alt {
background-color: rgba(23, 105, 255, 0.09);
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
display: inline-block;
font-weight: 700;
color: #1769FF;
margin-top: 6px;
}
.category-content-alt {
padding: 25px;
flex: 1 1 auto;
display: flex;
flex-direction: column;
align-items: stretch;
}
.category-description-alt {
font-size: 0.98rem;
color: #45639a;
margin-bottom: 20px;
line-height: 1.7;
flex: 1 1 auto;
}
.category-features-alt {
margin-bottom: 20px;
}
.feature-item-alt {
display: flex;
align-items: center;
margin-bottom: 8px;
font-size: 0.95rem;
color: #45639a;
transition: color 0.3s;
}
.feature-icon-alt {
width: 28px;
height: 28px;
border-radius: 50%;
background: #eaf2ff;
display: flex;
align-items: center;
justify-content: center;
color: #68F6F8;
font-size: 1.1rem;
margin-right: 10px;
font-weight: bold;
}
.btn-primary.cat-btn {
width: 100%;
margin-top: auto;
background: #68F6F8;
color: #fff;
border: none;
border-radius: 25px;
padding: 12px 0;
font-size: 1.08rem;
font-weight: 700;
text-decoration: none;
box-shadow: 0 4px 18px rgba(255, 49, 148, 0.16);
transition: background 0.2s, color 0.2s, box-shadow 0.2s;
cursor: pointer;
text-align: center;
display: block;
}
.btn-primary.cat-btn:hover, .btn-primary.cat-btn:focus {
background: #1769FF;
color: #fff;
box-shadow: 0 8px 30px rgba(23, 105, 255, 0.23);
outline: none;
}
@media (max-width: 900px) {
.games-section-alt {
padding: 32px 10px 24px 10px;
}
.games-grid-alt {
gap: 18px;
}
}
.hero-title-inverted {
font-size: 2.8rem;
font-weight: 900;
letter-spacing: 0.01em;
margin-bottom: 10px;
color: var(--text-color);
position: relative;
display: inline-block;
}
.hero-stat-pill {
background: #f6faff;
color: var(--text-color);
font-weight: 700;
font-size: 1.01rem;
border-radius: 18px;
padding: 8px 18px;
box-shadow: 0 2px 8px rgba(23,105,255,0.07);
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 6px;
white-space: nowrap;
transition: background 0.2s, color 0.2s;
}
.hero-stat-pill:hover {
background: #eaf2ff;
color: var(--accent-color);
}
.section-title {
color: var(--accent-color);
margin-bottom: 2rem;
font-size: 2.2rem;
border-bottom: 3px solid var(--accent-color);
padding-bottom: 15px;
text-align: center;
position: relative;
}

.section-title::after {
content: '';
position: absolute;
bottom: -3px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: var(--text-color);
}

.category-title-alt {
font-size: 1.2rem;
font-weight: 900;
color: var(--text-color);
margin-bottom: 8px;
}
.hero-title-solid-underline-blue {
background: var(--accent-color);
}
.game-count-alt {
background-color: rgba(23, 105, 255, 0.09);
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
display: inline-block;
font-weight: 700;
color: var(--accent-color);
margin-top: 6px;
}
.btn-primary.cat-btn {
width: 100%;
margin-top: auto;
background: var(--text-color);
color: #fff;
border: none;
border-radius: 25px;
padding: 12px 0;
font-size: 1.08rem;
font-weight: 700;
text-decoration: none;
box-shadow: 0 4px 18px rgba(255, 49, 148, 0.16);
transition: background 0.2s, color 0.2s, box-shadow 0.2s;
cursor: pointer;
text-align: center;
display: block;
}
.btn-primary.cat-btn:hover, .btn-primary.cat-btn:focus {
background: var(--accent-color);
color: #fff;
box-shadow: 0 8px 30px rgba(23, 105, 255, 0.23);
outline: none;
}
.faq-toggle {
font-size: 1.5rem;
margin-left: 8px;
transition: transform 0.3s, color 0.2s;
color: var(--text-color); 
}
.faq-answer {
max-height: 0;
overflow: hidden;
background: #fff;
color: #45639a;
border-radius: 0 0 10px 10px;
box-shadow: 0 2px 8px rgba(23,105,255,0.08);
margin-top: 0;
padding: 0 24px;
font-size: 1rem;
line-height: 1.7;
transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.4s cubic-bezier(.4,0,.2,1), margin-top 0.4s cubic-bezier(.4,0,.2,1);
}
.trending-title {
font-size: 1.3rem;
font-weight: 900;
margin-bottom: 14px;
color: var(--text-color);
letter-spacing: 0.03em;
}
/* Unified button style */
.trending-link.btn-primary {
background: var(--accent-color);
color: #fff;
padding: 14px 32px;
border-radius: 30px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: background 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 6px 20px rgba(255, 49, 148, 0.18);
width: 100%;
max-width: 220px;
margin: 0 auto;
display: inline-block;
text-align: center;
margin-top: auto;
border: none;
cursor: pointer;
}
.trending-link.btn-primary:hover, .trending-link.btn-primary:focus {
background: var(--text-color);
box-shadow: 0 8px 30px rgba(23, 105, 255, 0.23);
outline: none;
}
.casino-experience .section-title {
margin-bottom: 28px;
color: var(--accent-color);
font-size: 2rem;
font-weight: 900;
text-align: center;
}
.casino-experience {
background: #fff;
color: #45639a;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 48px 40px;
margin-bottom: 3rem;
font-family: 'M PLUS Rounded 1c', sans-serif;
}
.read-more-btn {
display: block;
margin: 18px auto 0 auto;
background: var(--accent-color);
color: #fff;
padding: 12px 32px;
border-radius: 30px;
border: none;
font-weight: 700;
font-size: 1.08rem;
cursor: pointer;
box-shadow: 0 3px 12px rgba(255,49,148,0.13);
transition: background 0.2s;
}
.read-more-btn:hover,
.read-more-btn:focus {
background: var(--text-color);
outline: none;
}
.step-title {
font-size: 1.15rem;
font-weight: bold;
margin-bottom: 10px;
color: var(--text-color);
}
a {
color: var(--text-color);         /* normal state */
text-decoration: none;  /* optional: remove underline */
}

a:hover {
color: var(--text-color);          /* hover state */
text-decoration: underline; /* optional: add underline on hover */
}
.footer-bottom p{
color: var(--default);
}
@media (max-width: 900px) {
.footer-content { gap: 8px !important; }           /* small, consistent gap */
.footer-section { margin-bottom: 12px !important; } /* reduce block spacing */
.footer-section { min-width: auto; flex: 1 1 auto; }/* avoid weird wrapping widths */
.footer-links li { margin-bottom: 6px; }            /* tighter list spacing */
body { padding-bottom: 72px; }                      /* avoid overlay under fixed promo bar */
}
@media (max-width: 900px) {
.footer-content {
flex-direction: column;
align-items: flex-start; /* align all sections to the left */
gap: 0;
}

.footer-section {
max-width: 100%;
margin-bottom: 28px;
align-items: flex-start; /* keep items inside aligned left */
text-align: left;        /* force text to the left */
width: 100%;             /* ensures they span full width */
}
}
.features-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 32px;
margin-top: 12px;
}
@media (max-width: 900px) {
.features-grid { flex-direction: column; gap: 20px; }
.feature-card { max-width: 100%; min-width: 0; }
}
.features-section {
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.06);
padding: 48px 40px 36px 40px;
margin-bottom: 3rem;
font-family: 'M PLUS Rounded 1c', sans-serif;
text-align: center;
}
.feature-card {
background: #f6faff;
border-radius: 14px;
box-shadow: 0 2px 8px rgba(23,105,255,0.07);
padding: 24px 22px 20px 22px;
display: flex;
flex-direction: column;
align-items: center;
min-width: 220px;
max-width: 300px;
flex: 1 1 220px;
transition: transform 0.3s, box-shadow 0.3s;
text-align: center;
}
.feature-card:hover {
transform: translateY(-6px) scale(1.04);
box-shadow: 0 6px 18px rgba(255,49,148,0.13);
}
.feature-icon-login {
color: var(--text-color);
margin-right: 10px;
font-size: 1.1rem;
width: 20px;
text-align: center;
}
.feature-icon-login {
width: 46px;
height: 46px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 10px;
box-shadow: 0 2px 10px rgba(23,105,255,0.10);
border: 3px solid #fff;
flex-shrink: 0;
}
.features-intro {
color: #45639a;
font-size: 1.08rem;
margin-bottom: 32px;
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
.feature-title {
font-size: 1.1rem;
font-weight: 900;
color: var(--text-color);
margin-bottom: 6px;
margin-top: 0;
}
.feature-desc {
font-size: 1rem;
color: #45639a;
margin: 0;
}
