: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 */
}
.review-content p {
color: #45639a;
}

p.info-text{
color: var(--default);
}

p.game-description {
color: var(--default);
}

p.promo-description {
color: var(--default);
}

p.security-description {
color: var(--default);
}

p.testimonial-content  {
color: var(--default);
}

p.testimonial-author {
color: var(--accent-color);
}
a {
color: var(--text-color);         /* normal state */
text-decoration: none;  /* optional: remove underline */
}

a:hover {
color: var(--accent-color);          /* hover state */
text-decoration: underline; /* optional: add underline on hover */
}
.promo-desc-CTA {
font-size: 1.3rem;
color: var(--light-text-color);
margin-bottom: 30px;
font-weight: 700;
}

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;
}

.hamburger-menu.open .hamburger-icon span:nth-child(1) {
top: 10px;
width: 0%;
left: 50%;
}

.hamburger-menu.open .hamburger-icon span:nth-child(2) {
transform: rotate(45deg);
}

.hamburger-menu.open .hamburger-icon span:nth-child(3) {
transform: rotate(-45deg);
}

.hamburger-menu.open .hamburger-icon span:nth-child(4) {
top: 10px;
width: 0%;
left: 50%;
}

.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;
}

.hero-section {
margin-bottom: 3rem;
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
padding: 0px 50px;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
overflow: hidden;
}

.hero-content {
max-width: 600px;
z-index: 1;
}

.hero-title {
font-size: 50px;
font-weight: 900;
color: var(--light-text-color);
margin-bottom: 20px;
}

.hero-subtitle {
font-size: 1.2rem;
color: var(--light-text-color);
margin-bottom: 30px;
}

.hero-cta {
display: inline-block;
background-color: var(--text-color);
color: var(--default);
padding: 15px 30px;
border-radius: 30px;
text-decoration: none;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.hero-cta:hover {
background-color: var(--light-text-color);
color: var(--text-color);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-image {
max-width: 650px;
z-index: 1;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.1;
z-index: 0;
}

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

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

.review-title {
color: var(--text-color);
margin-bottom: 1.5rem;
font-size: 2rem;
border-bottom: 2px solid var(--accent-color);
padding-bottom: 10px;
}

.review-content {
line-height: 1.8;
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}

.info-card {
background-color: var(--secondary-color);
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.info-card:hover {
transform: translateY(-5px);
}

.info-icon {
font-size: 2.5rem;
color: var(--text-color);
margin-bottom: 15px;
}

.info-title {
font-size: 1.2rem;
color: var(--light-text-color);
margin-bottom: 10px;
}

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

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

.game-card {
background-color: #000000;
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
transform: translateY(-10px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.game-image {
width: 100%;
height: 180px;
object-fit: cover;
}

.game-info {
padding: 20px;
}

.game-title {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--text-color);
}

.game-description {
font-size: 0.95rem;
color: var(--light-text-color);
margin-bottom: 15px;
}

.game-stats {
display: flex;
justify-content: space-between;
font-size: 0.9rem;
color: var(--accent-color);
}

.promo-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}

.promo-box {
background-color: #000000;
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promo-box:hover {
transform: translateY(-10px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.promo-image {
width: 100%;
height: 200px;
object-fit: cover;
}

.promo-info {
padding: 25px;
}

.promo-title {
font-size: 1.3rem;
margin-bottom: 15px;
margin-top: 0px;
color: var(--text-color);
}

.promo-description {
font-size: 1rem;
color: var(--light-text-color);
margin-bottom: 20px;
}

.read-more {
display: inline-block;
padding: 10px 20px;
background-color: var(--accent-color);
color: var(--default);
text-decoration: none;
border-radius: 25px;
transition: all 0.3s ease;
font-weight: bold;
}

.read-more:hover {
background-color: var(--text-color);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.banking-options {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 30px;
}

.banking-option {
text-align: center;
margin: 15px;
transition: transform 0.3s ease;
}

.banking-option:hover {
transform: translateY(-5px);
}

.banking-icon {
font-size: 2.5rem;
color: var(--text-color);
margin-bottom: 10px;
}

.banking-name {
font-size: 1rem;
color: var(--light-text-color);
}

.security-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-top: 30px;
}

.security-feature {
background-color: var(--secondary-color);
padding: 20px;
border-radius: 10px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-feature:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.security-icon {
font-size: 2.5rem;
color: var(--text-color);
margin-bottom: 15px;
}

.security-title {
font-size: 1.2rem;
color: var(--light-text-color);
margin-bottom: 10px;
}

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

.testimonials {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}

.testimonial-card {
background-color: var(--secondary-color);
border-radius: 15px;
padding: 25px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-5px);
}

.testimonial-content {
font-style: italic;
margin-bottom: 15px;
}

.testimonial-author {
font-weight: bold;
color: var(--text-color);
}

.testimonial-rating {
color: #ffd700;
font-size: 1.2rem;
margin-top: 10px;
}

.testimonial-form {
margin-top: 50px;
background-color: var(--secondary-color);
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
color: var(--default);
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 5px;
color: var(--light-text-color);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid var(--accent-color);
background-color: var(--primary-color);
color: var(--light-text-color);
}

.form-group textarea {
height: 100px;
resize: vertical;
}

.submit-button {
background-color: var(--text-color);
color: var(--default);
padding: 10px 20px;
border: none;
border-radius: 25px;
cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
}

.submit-button:hover {
background-color: var(--accent-color);
transform: translateY(-2px);
}

.thank-you-message {
display: none;
text-align: center;
padding: 20px;
background-color: var(--accent-color);
color: var(--light-text-color);
border-radius: 10px;
margin-top: 20px;
}

.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: 2rem;
color: var(--text-color);
margin-bottom: 20px;
}

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

.promo-cta {
background-color: var(--text-color);
color: var(--default);
padding: 15px 30px;
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);
}

.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));
}

.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: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.footer-section {
flex: 1;
min-width: 200px;
margin-bottom: 20px;
}

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

.footer-links {
list-style: none;
padding: 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);
}

.social-icons {
display: flex;
gap: 15px;
}

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

.social-icon: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);
}

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

.side-nav {
width: 0;
}

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

.container {
margin-left: 0;
}

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

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

.hero-section {
flex-direction: column;
padding: 50px 20px;
}

.hero-content {
text-align: center;
margin-bottom: 30px;
}

.hero-image {
max-width: 100%;
}

.games-grid {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.promo-grid {
grid-template-columns: 1fr;
}

.footer-content {
flex-direction: column;
}

.footer-section {
margin-bottom: 30px;
}

.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%;
}
}
.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;
}
}
.footer-bottom p{
color: var(--default);
}
/* Tighten footer spacing on mobile */
@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 */
}
.hero-title {
font-size: 40px;
}
.review-title {
font-size: 1.5rem;
}
}