/* Base Styles & CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Dark Theme Colors */
  --primary-color: #f61e88;
  --secondary-color: #27c2ff;
  --accent-color: #ffc107;
  --bg-dark: #121212;
  --bg-darker: #0a0a0a;
  --bg-card: #1e1e1e;
  --text-color: #ffffff;
  --text-muted: #b0b0b0;
  --border-color: #333333;
  
  /* Font Variables */
  --heading-font: 'Prompt', sans-serif;
  --body-font: 'Sarabun', sans-serif;
  
  /* Site Width */
  --site-width: 1280px;
  
  /* Spacing */
  --section-spacing: 4rem;
  --content-spacing: 2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background-color: var(--bg-dark);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--site-width);
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(246, 30, 136, 0.4);
}

p {
  margin-bottom: 1.5rem;
}

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

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

strong {
  color: var(--accent-color);
  font-weight: 700;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #ff4ea2);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff4ea2, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(246, 30, 136, 0.4);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #5be1ff);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5be1ff, var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(39, 194, 255, 0.4);
  color: white;
}

/* Hero Section Styles */
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(246, 30, 136, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(246, 30, 136, 0.4);
}

/* Responsive Styles */
@media (max-width: 991px) {
  h1 {
    font-size: 2.2rem;
  }
  
  .hero-section .container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    width: 100%;
  }
  
  .hero-image {
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* Header Styles */
.site-header {
    background-color: rgba(10, 10, 10, 0.97);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text .highlight {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    margin: 0 1rem;
}

.nav-list li a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: white;
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.mobile-controls {
    display: none;
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-close:hover {
    color: white;
}

.mobile-nav-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    flex: 1;
}

.mobile-nav-list li {
    margin-bottom: 1.2rem;
}

.mobile-nav-list li a {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: white;
    padding-left: 0.5rem;
}

.mobile-cta {
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.6);
    border-top: 1px solid var(--border-color);
}

.mobile-cta .btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Header Styles */
@media (max-width: 1100px) {
    .main-nav {
        display: none;
    }
    
    .mobile-controls {
        display: block;
    }
    
    .header-wrapper {
        padding: 0.8rem 0;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 0.7rem 0;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: none;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Additional styles for main content to compensate for fixed header */
main {
    padding-top: 80px;
}

@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 60px;
    }
}

/* Section 2 - Register Benefits Section */
.register-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #150a1e);
    position: relative;
}

.register-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 1;
}

.register-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.register-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.register-text {
    flex: 3;
}

.register-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.bonus-list {
    background: rgba(39, 194, 255, 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 2rem 0;
    list-style-type: none;
}

.bonus-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

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

.bonus-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.cta-container {
    margin-top: 2rem;
    text-align: center;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), #ffdd2d);
    color: #000;
    font-weight: bold;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #ffdd2d, var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    color: #000;
}

.register-features {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
    background: rgba(39, 194, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Responsive styles for Section 2 */
@media (max-width: 1100px) {
    .register-content {
        flex-direction: column;
    }
    
    .register-features {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .register-section {
        padding: 4rem 0;
    }
    
    .bonus-list {
        padding: 1.2rem;
    }
    
    .bonus-list li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .register-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .bonus-list li {
        font-size: 0.95rem;
    }
    
    .register-text p {
        font-size: 1rem;
    }
}

/* Section 3 - Easy Money Features */
.easy-money-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #150a1e, #0c0c14);
    position: relative;
    overflow: hidden;
}

.easy-money-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.easy-money-section .container {
    position: relative;
    z-index: 2;
}

.easy-money-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.easy-money-image {
    flex: 1;
    position: relative;
}

.easy-money-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(39, 194, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.easy-money-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 194, 255, 0.4);
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    font-family: var(--heading-font);
    transform: rotate(5deg);
}

.easy-money-text {
    flex: 1.5;
}

.easy-money-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.steps-list {
    background: rgba(246, 30, 136, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    counter-reset: steps;
    list-style-type: none;
    border: 1px solid var(--border-color);
}

.steps-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    position: relative;
    padding-left: 3rem;
}

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

.step-number {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-family: var(--heading-font);
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    flex: 1;
    min-width: 120px;
    background: rgba(30, 30, 30, 0.6);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    background: rgba(39, 194, 255, 0.1);
    border-color: var(--secondary-color);
}

.trust-badge i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.trust-badge span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1rem;
}

/* Responsive styles for Section 3 */
@media (max-width: 991px) {
    .easy-money-content {
        flex-direction: column-reverse;
    }
    
    .easy-money-image {
        margin-top: 2rem;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .trust-badge {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .easy-money-section {
        padding: 4rem 0;
    }
    
    .easy-money-text p {
        font-size: 1rem;
    }
    
    .steps-list {
        padding: 1.2rem;
    }
    
    .steps-list li {
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .trust-badge {
        width: 100%;
    }
    
    .steps-list li {
        padding-left: 2.5rem;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .floating-badge {
        top: -10px;
        right: -10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Section 4 - Auto Deposit Withdrawal */
.auto-deposit-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0c0c14, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.auto-deposit-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.auto-deposit-section .container {
    position: relative;
    z-index: 2;
}

.auto-deposit-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.auto-deposit-text {
    flex: 1.2;
}

.auto-deposit-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.bank-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    list-style-type: none;
}

.bank-list li {
    display: flex;
    align-items: center;
    background: rgba(39, 194, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.bank-list li:hover {
    background: rgba(39, 194, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.bank-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.auto-deposit-features {
    flex: 1;
}

.auto-deposit-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auto-deposit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary-color);
}

.auto-deposit-card img {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

.auto-deposit-highlights {
    padding: 1.5rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.highlight:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 1rem;
}

.highlight-content {
    flex: 1;
}

.highlight-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--accent-color);
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Animation for the auto-deposit card */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 194, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(39, 194, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 194, 255, 0);
    }
}

.auto-deposit-card {
    animation: pulse 2s infinite;
}

/* Responsive styles for Section 4 */
@media (max-width: 991px) {
    .auto-deposit-content {
        flex-direction: column;
    }
    
    .auto-deposit-text {
        order: 2;
    }
    
    .auto-deposit-features {
        order: 1;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .auto-deposit-card {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .bank-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .auto-deposit-section {
        padding: 4rem 0;
    }
    
    .auto-deposit-text p {
        font-size: 1rem;
    }
    
    .highlight-content h3 {
        font-size: 1rem;
    }
    
    .highlight-content p {
        font-size: 0.85rem;
    }
    
    .highlight-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .bank-list {
        grid-template-columns: 1fr;
    }
    
    .highlight {
        margin-bottom: 1rem;
    }
    
    .auto-deposit-highlights {
        padding: 1.2rem;
    }
    
    .auto-deposit-card img {
        height: 180px;
    }
}

/* Section 5 - Secure Access */
.secure-access-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0a0a0a, #121212);
    position: relative;
    overflow: hidden;
}

.secure-access-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.secure-access-section .container {
    position: relative;
    z-index: 2;
}

.secure-access-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.secure-access-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.secure-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.secure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(246, 30, 136, 0.2);
    border-color: var(--primary-color);
}

.secure-card:nth-child(2):hover {
    box-shadow: 0 15px 30px rgba(39, 194, 255, 0.2);
    border-color: var(--secondary-color);
}

.secure-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.secure-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.secure-card:nth-child(2) .secure-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.secure-icon i {
    color: white;
    font-size: 1.5rem;
}

.secure-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: white;
}

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

.secure-card-body p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

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

.feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.secure-access-info {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.secure-image {
    flex: 1;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(39, 194, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 450px;
}

.secure-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(39, 194, 255, 0.3);
}

.secure-access-text {
    flex: 1.5;
}

.secure-access-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.02));
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.license-badge i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.license-badge span {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.secure-card:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.secure-card:nth-child(2) {
    animation: float 6s ease-in-out infinite 2s;
}

/* Responsive styles for Section 5 */
@media (max-width: 1100px) {
    .secure-access-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .secure-card {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .secure-access-info {
        flex-direction: column;
    }
    
    .secure-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .cta-container {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .secure-access-section {
        padding: 4rem 0;
    }
    
    .secure-card {
        padding: 1.5rem;
    }
    
    .secure-icon {
        width: 40px;
        height: 40px;
    }
    
    .secure-icon i {
        font-size: 1.2rem;
    }
    
    .secure-card-header h3 {
        font-size: 1.2rem;
    }
    
    .secure-card-body p,
    .secure-access-text p {
        font-size: 1rem;
    }
    
    .feature-list li {
        font-size: 0.95rem;
    }
    
    .license-badge {
        padding: 0.7rem 1.2rem;
    }
    
    .license-badge i {
        font-size: 1.3rem;
    }
    
    .license-badge span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .secure-card {
        padding: 1.2rem;
    }
    
    .secure-card-header {
        margin-bottom: 1rem;
    }
    
    .secure-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.8rem;
    }
    
    .secure-icon i {
        font-size: 1rem;
    }
    
    .secure-card-header h3 {
        font-size: 1.1rem;
    }
    
    .secure-card-body p {
        margin-bottom: 1rem;
    }
    
    .feature-list li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
}

/* Section 6 - Popular Slot Games */
.popular-games-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #121212, #0d0614);
    position: relative;
    overflow: hidden;
}

.popular-games-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.popular-games-section .container {
    position: relative;
    z-index: 2;
}

.games-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.games-intro {
    margin-bottom: 1rem;
}

.games-intro p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 1.2rem;
    text-align: center;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.game-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(246, 30, 136, 0.3);
    border-color: var(--primary-color);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px 15px 0 0;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px 15px 0 0;
}

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

.btn-play {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.game-card:hover .btn-play {
    transform: translateY(0);
    opacity: 1;
}

.btn-play:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: scale(1.05);
}

.btn-play i {
    font-size: 1.2rem;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--accent-color), #ff8f00);
    color: #000;
    font-weight: bold;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.game-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

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

.game-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-meta i {
    color: var(--accent-color);
}

.games-details {
    max-width: 900px;
    margin: 0 auto;
}

.games-details p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: center;
}

.tips-box {
    background: linear-gradient(to right, rgba(246, 30, 136, 0.1), rgba(39, 194, 255, 0.1));
    border-radius: 15px;
    padding: 2rem;
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.tips-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(246, 30, 136, 0.1) 0%, rgba(246, 30, 136, 0) 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
}

.tips-box::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(39, 194, 255, 0.1) 0%, rgba(39, 194, 255, 0) 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
}

.tips-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    justify-content: center;
}

.tips-box h3 i {
    font-size: 1.5rem;
}

.tips-box ol {
    list-style: none;
    counter-reset: tips-counter;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0;
}

.tips-box ol li {
    counter-increment: tips-counter;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2.5rem;
}

.tips-box ol li::before {
    content: counter(tips-counter);
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
}

.tips-box ol li span {
    font-size: 1.05rem;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 280px;
}

/* Animation for game cards */
@keyframes gameCardAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.game-card:nth-child(1) {
    animation: gameCardAnimation 4s ease-in-out infinite;
}

.game-card:nth-child(2) {
    animation: gameCardAnimation 4s ease-in-out infinite 1s;
}

.game-card:nth-child(3) {
    animation: gameCardAnimation 4s ease-in-out infinite 2s;
}

.game-card:nth-child(4) {
    animation: gameCardAnimation 4s ease-in-out infinite 3s;
}

/* Responsive styles for Section 6 */
@media (max-width: 1100px) {
    .game-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-box ol {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .popular-games-section {
        padding: 4rem 0;
    }
    
    .games-intro p,
    .games-details p {
        font-size: 1rem;
    }
    
    .tips-box {
        padding: 1.5rem;
    }
    
    .tips-box h3 {
        font-size: 1.2rem;
    }
    
    .tips-box ol li span {
        font-size: 1rem;
    }
    
    .game-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .game-image img {
        height: 200px;
    }
    
    .tips-box {
        padding: 1.2rem;
    }
    
    .tips-box h3 {
        font-size: 1.1rem;
        text-align: left;
        justify-content: flex-start;
    }
    
    .tips-box ol li {
        padding-left: 2.2rem;
    }
    
    .tips-box ol li::before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        min-width: auto;
        width: 100%;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to bottom, #0a0a0a, #000000);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='72' viewBox='0 0 36 72'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M2 6h12L8 18 2 6zm18 36h12l-6 12-6-12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.4;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
}

.tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-menu {
    flex: 1;
    min-width: 150px;
}

.footer-menu h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-menu h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

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

.footer-menu ul li {
    margin-bottom: 0.7rem;
}

.footer-menu ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
}

.payment-icons i {
    color: var(--text-muted);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.responsible-gaming a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.responsible-gaming a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright-bar {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.copyright-bar p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

/* Responsive styles for footer */
@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo {
        text-align: center;
        width: 100%;
    }
    
    .footer-nav {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-menu {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .payment-methods {
        width: 100%;
        justify-content: center;
    }
    
    .responsible-gaming {
        width: 100%;
    }
    
    .responsible-gaming a {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-menu {
        width: 100%;
    }
    
    .footer-content {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .copyright-bar p {
        font-size: 0.8rem;
    }
    
    .legal-links {
        gap: 1rem;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    text-align: center;
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #1e1e1e;
    border-top: 2px solid var(--border-color);
}

.sticky-btn:hover {
    color: white;
    background: #2a2a2a;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sticky-btn span {
    white-space: nowrap;
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-top: none;
    transform: translateY(-10px);
    border-radius: 10px 10px 0 0;
    padding-top: 18px;
    box-shadow: 0 -4px 15px rgba(246, 30, 136, 0.4);
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-15px);
}

/* Responsive styles for sticky buttons */
@media (max-width: 576px) {
    .sticky-btn {
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .btn-register {
        transform: translateY(-7px);
        padding-top: 14px;
    }
    
    .btn-register:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 8px 2px;
        font-size: 0.7rem;
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
    }
}