/* Reset and Base Styles */
:root {
  --primary-color: #cc0066;
  --secondary-color: #ff3399;
  --accent-color: #ffcc00;
  --dark-color: #2d0a3e;
  --button-color: #4d1a60;
  --button-border: #8a2be2;
  --light-color: #ffffff;
  --grey-color: #f2f2f2;
  --hero-color: #230630; /* Updated to a deeper purple for hero background */
  --cta-color: #65b200; /* Bright green for CTA button */
  --site-bg-color: #56235C; /* Main website background color */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --border-radius: 0px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--light-color);
  background-color: var(--site-bg-color);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header Styles */
header {
  background-color: var(--site-bg-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 2rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: block;
  height: 50px;
  width: auto;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ac2cff;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}

.hamburger span {
  display: block;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.3rem, 0.3rem);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(100%);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3rem, -0.3rem);
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .header-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        margin-top: 1rem;
        border-radius: 1rem;
        box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.8rem;
        text-align: center;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-buttons {
        display: flex;
        margin-left: auto;
    }
    
    .nav-btn {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
        min-width: auto;
    }
    
    .hamburger {
        display: flex;
        margin-left: 1rem;
    }
}

.nav-btn {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--button-color);
  color: var(--light-color);
  border: 2px solid var(--button-border);
  text-decoration: none;
}

.nav-btn:hover, .nav-btn:focus {
  background-color: #5d2a70;
  border-color: #9d3ff5;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(138, 43, 226, 0.3);
}

/* Media Queries */
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .logo img {
    height: 42px;
  }
  
  .nav-btn {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 576px) {
  header {
    padding: 0.5rem 0;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 45px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
    display: block;
  }
  
  .header-nav {
    gap: 0.8rem;
    display: flex;
    align-items: center;
  }
  
  .nav-btn {
    font-size: 1.5rem;
    padding: 0.8rem 1.4rem;
    min-width: auto;
  }
} 

/* Hero Section */
.hero {
  background-color: var(--hero-color);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero__text {
  color: var(--light-color);
  max-width: 60%;
  z-index: 2;
}

.hero__text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-color);
  padding-bottom: 2rem;
}

.hero__info-block {
  background-color: #2d0a3e;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero__info-block p {
  color: var(--light-color);
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

.hero__subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero__offer {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.hero__rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rating-stars {
  display: flex;
  margin-right: 0.8rem;
}

.rating-stars .stars {
  color: var(--accent-color);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -1px;
}

.rating-text {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem;
}

.highlight-item {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--light-color);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
}

.hero__buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero__button {
  background-color: var(--cta-color);
  color: var(--light-color);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 2rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.hero__button:hover, .hero__button:focus {
  background-color: #78d700;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(101, 178, 0, 0.3);
}

.button-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  filter: brightness(1.2);
}

.hero__graphics {
  position: relative;
  height: 100%;
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 768px) {
  .hero__graphics {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 2rem auto 0 !important;
    position: relative !important;
  }
}

.hero__animation {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero__animation {
    max-width: 220px !important;
    margin: 0 auto !important;
    display: block !important;
    position: static !important;
  }
}

@media (max-width: 576px) {
  .hero__animation {
    max-width: 180px !important;
  }
}

@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero__text {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .hero__info-block p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .hero__buttons {
    justify-content: center;
  }
  
  .hero__graphics {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    height: auto;
  }
  
  .hero__animation {
    position: relative;
    max-width: 220px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 3rem 1rem;
  }
  
  .hero__text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .hero__info-block p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__button {
    width: 100%;
    justify-content: center;
  }
  
  .hero__graphics {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 0;
  }
  
  .hero__animation {
    max-width: 180px;
    margin: 0 auto;
    display: block;
  }
}

/* Text Block Section */
.text-block {
  padding: 3rem 0;
  background-color: var(--site-bg-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}

.text-block__subheading {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 4rem 0 2rem;
  color: var(--light-color);
  text-align: left;
}

.text-block__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--light-color);
  text-align: left;
}

/* Media Queries for Text Block */
@media (max-width: 768px) {
  .text-block {
    padding: 2rem 0;
  }
  
  .text-block__subheading {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .text-block {
    padding: 2rem 0;
  }
  
  .text-block__subheading {
    font-size: 2.2rem;
  }
  
  .text-block__text {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .text-block {
    padding: 1.5rem 0;
  }
  
  .text-block__subheading {
    font-size: 2rem;
  }
  
  .text-block__text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
} 

/* Info Cards Section */
.info-cards {
  padding: 2rem 0 3rem 0;
  background-color: var(--site-bg-color);
}

.info-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.info-card {
  background-color: rgba(179, 204, 255, 0.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: rgba(179, 204, 255, 0.25);
}

.info-card__label {
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.info-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-color);
  line-height: 1.2;
}

.info-cards h2 {
  margin-bottom: 2rem;
}

/* Media Queries for Info Cards */
@media (max-width: 768px) {
  .info-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-card {
    padding: 2rem 1.5rem;
    min-height: 110px;
  }
  
  .info-card__label {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .info-card__value {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .info-cards {
    padding: 2rem 0 3rem 0;
  }
  
  .info-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .info-card {
    padding: 1.5rem 1rem;
    min-height: 120px;
  }
  
  .info-card__label {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .info-card__value {
    font-size: 2rem;
  }
  
  .info-cards h2 {
    margin-bottom: 1.5rem;
  }
}

/* Casino Info Table */
.casino-info-table-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.casino-info-table {
  width: 100%;
  border-collapse: collapse;
}

.casino-info-table thead {
  background-color: rgba(179, 204, 255, 0.2);
}

.casino-info-table th {
  padding: 1.5rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-color);
  text-align: left;
}

.casino-info-table td {
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--light-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-info-table td:first-child {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
}

.casino-info-table td:last-child {
  font-weight: 700;
  font-size: 1.8rem;
}

.casino-info-table tr:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.casino-info-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .casino-info-table-wrapper {
    margin: 0 1rem;
  }
  
  .casino-info-table th,
  .casino-info-table td {
    padding: 1.2rem 1.5rem;
  }
  
  .casino-info-table thead {
    display: none;
  }
  
  .casino-info-table tr {
    display: block;
    background-color: rgba(179, 204, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .casino-info-table td {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .casino-info-table td:first-child {
    background-color: rgba(179, 204, 255, 0.2);
    font-size: 1.5rem;
    padding: 1.5rem;
  }
  
  .casino-info-table td:last-child {
    font-size: 2.2rem;
    padding: 1.5rem;
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .casino-info-table-wrapper {
    margin: 0;
  }
  
  .casino-info-table td:first-child {
    font-size: 1.4rem;
  }
  
  .casino-info-table td:last-child {
    font-size: 2rem;
  }
} 

/* Typography */
h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--light-color);
  text-align: left;
}

p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--light-color);
}

@media (max-width: 768px) {
  h2 {
    font-size: 3.2rem;
  }
  
  h3 {
    font-size: 2.4rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
  }
  
  p {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 2.8rem;
  }
  
  h3 {
    font-size: 2.2rem;
    margin: 2rem 0 1.2rem;
    font-weight: 600;
  }
  
  p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
} 

/* Registration Section */
.registration {
  padding: 2rem 0;
  background-color: var(--site-bg-color);
}

.registration .container > p {
  text-align: left;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 4rem;
}

.registration .container > p:last-of-type {
  margin-top: 4rem;
  text-align: left;
}

.registration__steps {
  max-width: 800px;
  margin: 0;
}

.registration__step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.registration__step p {
  padding-top: 0.8rem;
  margin-bottom: 0;
}

.step-number {
  background-color: var(--button-color);
  color: var(--light-color);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 2rem;
  border: 2px solid var(--button-border);
}

.step-text {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-top: 0.8rem;
  color: var(--light-color);
}

/* Media Queries for Registration */
@media (max-width: 768px) {
  .registration__step {
    padding-left: 0;
  }
  
  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    margin-right: 1.5rem;
  }
}

@media (max-width: 576px) {
  .registration__step p {
    font-size: 1.7rem;
  }
} 

/* Challenges Banner Section */
.challenges-banner {
  background-color: var(--hero-color);
  padding: 4rem 0;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.challenges-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.challenges-text {
  max-width: 50%;
  z-index: 2;
}

.challenges-text h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-color);
  text-align: left;
}

.challenges-reward {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 2.5rem;
  text-align: left;
}

.challenges-cta {
  display: inline-block;
  background-color: #65b200;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.challenges-cta:hover, .challenges-cta:focus {
  background-color: #78d700;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(101, 178, 0, 0.3);
}

.challenges-graphics {
  position: relative;
  height: 200px;
  width: 50%;
}

.token {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  background-size: cover;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.token-blue {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #00c2ff 0%, #0057ff 100%);
  top: 50%;
  left: 10%;
  transform: translateY(-50%) rotate(15deg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: float 8s ease-in-out infinite;
}

.token-green {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #00ffd9 0%, #00b377 100%);
  top: 30%;
  left: 40%;
  transform: translateY(-50%) rotate(-5deg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: float 6s ease-in-out infinite reverse;
}

.token-purple {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #c042ff 0%, #8a2bee 100%);
  top: 60%;
  right: 5%;
  transform: translateY(-50%) rotate(10deg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: float 7s ease-in-out infinite 1s;
}

/* Media Queries for Challenges Banner */
@media (max-width: 768px) {
  .challenges-banner {
    padding: 3rem 0;
  }
  
  .challenges-content {
    flex-direction: column;
    text-align: center;
  }
  
  .challenges-text {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
  
  .challenges-text h2, 
  .challenges-reward {
    text-align: center;
  }
  
  .challenges-text h2 {
    font-size: 2.8rem;
  }
  
  .challenges-reward {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
  
  .challenges-graphics {
    width: 100%;
    height: 200px;
    margin-top: 1.5rem;
  }
  
  .token-blue {
    left: 20%;
    width: 90px;
    height: 90px;
  }
  
  .token-green {
    left: 50%;
    width: 120px;
    height: 120px;
  }
  
  .token-purple {
    right: 15%;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .challenges-banner {
    padding: 2rem 0;
    margin: 1rem 0;
  }
  
  .challenges-text {
    margin-bottom: 2rem;
  }
  
  .challenges-text h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .challenges-reward {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  
  .challenges-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1.6rem;
  }
  
  .challenges-graphics {
    display: none;
  }
  
  .token-blue {
    width: 60px;
    height: 60px;
  }
  
  .token-green {
    width: 80px;
    height: 80px;
  }
  
  .token-purple {
    width: 50px;
    height: 50px;
  }
} 

/* Bonus Crab Credits Section */
.bonus-selection {
  padding: 4rem 0;
  background-color: var(--site-bg-color);
}

.bonus-selection__wrapper {
  display: flex;
  gap: 3rem;
}

.bonus-crab {
  flex: 1;
  background-color: #3b0f52;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bonus-crab h2 {
  color: var(--light-color);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.4rem;
}

.bonus-crab__visual {
  background-color: #56205a;
  background-image: linear-gradient(135deg, #3b0f52 0%, #56205a 100%);
  border-radius: 8px;
  padding: 0;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.visual-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  position: relative;
}

.visual-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.deposit-img, .crab-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 40%;
}

.icon-wrapper {
  background: rgba(0, 0, 0, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.deposit-img img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.equals-sign {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--light-color);
  background-color: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.crab-badge {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffb700 0%, #ff9900 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.crab-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.plus-one {
  color: #ff0000;
  font-weight: 800;
  font-size: 2.4rem;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.deposit-img p, .crab-credit p {
  color: var(--light-color);
  line-height: 1.5;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bonus-crab__steps {
  margin-bottom: 2rem;
}

.step-item {
  display: flex;
  padding: 1.2rem;
  border-radius: 4px;
  margin-bottom: 1px;
  background-color: #4a1766;
}

.step-number {
  width: 26px;
  height: 26px;
  background-color: #6c249b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-color);
  font-weight: 600;
  margin-right: 1.2rem;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.step-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 0.2rem;
}

.step-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.3;
}

.bonus-crab__cta {
  display: block;
  width: 100%;
  padding: 1.4rem;
  background-color: #65b200;
  color: var(--light-color);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.bonus-crab__cta:hover {
  background-color: #78d700;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(101, 178, 0, 0.3);
}

.bonus-info {
  flex: 1;
}

.bonus-info h2 {
  color: var(--light-color);
  margin-bottom: 2rem;
}

.bonus-info p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

/* Media Queries for Bonus Crab */
@media (max-width: 992px) {
  .bonus-selection__wrapper {
    flex-direction: column;
  }
  
  .bonus-crab,
  .bonus-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .bonus-selection {
    padding: 3rem 0;
  }
  
  .bonus-info p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .visual-container {
    padding: 1.8rem;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .deposit-img img {
    width: 50px;
    height: 50px;
  }
  
  .crab-badge {
    width: 70px;
    height: 70px;
  }
  
  .plus-one {
    font-size: 2.2rem;
  }
  
  .deposit-img p, .crab-credit p {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .bonus-selection {
    padding: 2.5rem 0;
  }
  
  .bonus-info p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .bonus-crab {
    padding: 1.5rem 1rem;
  }
  
  .bonus-crab h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .visual-container {
    flex-direction: row;
    gap: 1rem;
    padding: 1.5rem 1rem;
    justify-content: space-around;
    align-items: center;
  }
  
  .deposit-img, .crab-credit {
    width: auto;
    flex: 1;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }
  
  .deposit-img img, .crab-badge {
    width: 40px;
    height: 40px;
  }
  
  .crab-badge {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }
  
  .equals-sign {
    font-size: 2rem;
    width: 35px;
    height: 35px;
  }
  
  .plus-one {
    font-size: 2rem;
  }
  
  .step-content h3 {
    font-size: 1.4rem;
  }
  
  .step-content p {
    font-size: 1.5rem;
  }
  
  .deposit-img p, .crab-credit p {
    font-size: 1.3rem;
  }
  
  .bonus-crab__steps {
    margin-bottom: 1.5rem;
  }
  
  .step-item {
    padding: 1rem;
  }
  
  .step-number {
    width: 22px;
    height: 22px;
    font-size: 1.2rem;
    margin-right: 1rem;
  }
  
  .bonus-crab__cta {
    padding: 1.2rem;
    font-size: 1.5rem;
  }
} 

/* Bonus Overview Section */
.bonus-overview {
  padding: 6rem 0;
  background-color: var(--site-bg-color);
}

.bonus-overview__text {
  font-size: 1.7rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: var(--light-color);
  text-align: left;
  max-width: 1000px;
}

.bonus-table {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bonus-table__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  background-color: rgba(179, 204, 255, 0.2);
  padding: 1.5rem 2rem;
}

.bonus-table__header .bonus-table__cell {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-color);
}

.bonus-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.bonus-table__row:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.bonus-table__row:last-child {
  border-bottom: none;
}

.bonus-table__cell {
  padding: 1.5rem 2rem;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--light-color);
}

.bonus-table__name {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.bonus-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 1.5rem;
  border-radius: 50%;
  background-color: var(--dark-color);
  position: relative;
}

.bonus-icon--gift::before {
  content: '🎁';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
}

.bonus-icon--weekly::before {
  content: '🎮';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
}

.bonus-icon--trophy::before {
  content: '🏆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
}

.bonus-icon--star::before {
  content: '⭐';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
}

.bonus-icon--clock::before {
  content: '⏰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
}

/* Media Queries for Bonus Overview */
@media (max-width: 992px) {
  .bonus-table__header, .bonus-table__row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bonus-table__header {
    display: none;
  }
  
  .bonus-table__row {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .bonus-table__cell {
    padding: 0.8rem 0;
    position: relative;
  }
  
  .bonus-table__cell:not(.bonus-table__name):before {
    content: attr(data-label);
    font-weight: 700;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 576px) {
  .bonus-overview {
    padding: 3rem 0;
  }
  
  .bonus-table__cell {
    font-size: 1.7rem;
  }
  
  .bonus-overview__text {
    font-size: 1.8rem;
    line-height: 1.6;
  }
} 

/* Security and Licensing Section */
.security-licensing {
  padding: 6rem 0;
  background-color: var(--site-bg-color);
  position: relative;
  overflow: hidden;
}

.security-licensing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  pointer-events: none;
}

.security-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.security-text {
  flex: 1;
}

.security-text h2 {
  color: var(--light-color);
  margin-bottom: 3rem;
  font-size: 3.2rem;
  font-weight: 700;
}

.security-text p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

.security-cta {
  display: inline-block;
  background-color: var(--cta-color);
  color: var(--light-color);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.5rem 4rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2rem;
  transition: var(--transition);
}

.security-cta:hover, .security-cta:focus {
  background-color: #78d700;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(101, 178, 0, 0.3);
}

.security-graphic {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.phone-placeholder {
  position: relative;
  width: 300px;
  height: 610px;
  margin: 0 auto;
}

.phone-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
  background-color: #230630;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  height: 30px;
}

.phone-time {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--light-color);
}

.phone-icons {
  display: flex;
  gap: 8px;
}

.signal, .wifi, .battery {
  width: 16px;
  height: 16px;
  position: relative;
}

.signal::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, var(--light-color) 40%, var(--light-color) 60%, transparent 60%);
}

.wifi::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, var(--light-color) 40%, var(--light-color) 60%, transparent 60%);
}

.battery::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 60%;
  background-color: var(--light-color);
  border-radius: 2px;
  top: 20%;
  left: 15%;
}

.phone-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  margin-top: 5px;
}

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

.logo-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--light-color);
  letter-spacing: 1px;
}

.auth-buttons {
  display: flex;
  gap: 15px;
  font-size: 1.2rem;
}

.log-in, .register {
  color: var(--light-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.register {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light-color);
  position: relative;
  padding: 5px 0;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.phone-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roulette-wheel {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #551a8b, #230630);
  border-radius: 50%;
  margin: 20px auto;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.roulette-wheel::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
  transform: rotate(-45deg);
}

.bonus-banner {
  width: 85%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  margin: 0 auto;
}

.bonus-label {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--light-color);
  margin-bottom: 8px;
  position: relative;
  padding: 0 10px;
}

.bonus-label::before, .bonus-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.bonus-label::before {
  left: -25px;
}

.bonus-label::after {
  right: -25px;
}

.bonus-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.join-button {
  background-color: var(--cta-color);
  color: var(--light-color);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-categories {
  margin-top: 25px;
  width: 100%;
  padding: 0 15px;
}

.category-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}

.category-item {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 10px;
  padding-left: 10px;
}

.games-row {
  display: flex;
  gap: 10px;
}

.game-tile {
  flex: 1;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Media Queries for Security and Licensing */
@media (max-width: 992px) {
  .security-content {
    flex-direction: column;
    gap: 4rem;
  }
  
  .security-text {
    order: 1;
  }
  
  .security-graphic {
    order: 2;
    margin: 0 auto;
  }
  
  .phone-placeholder {
    transform: scale(0.9);
  }
}

@media (max-width: 768px) {
  .security-licensing {
    padding: 4rem 0;
  }
  
  .security-text h2 {
    font-size: 2.8rem;
  }
  
  .security-text p {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  
  .security-cta {
    width: 100%;
    text-align: center;
  }
  
  .phone-placeholder {
    transform: scale(0.8);
  }
}

@media (max-width: 576px) {
  .security-licensing {
    padding: 3rem 0;
  }
  
  .security-text h2 {
    font-size: 2.4rem;
  }
  
  .security-text p {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  
  .phone-placeholder {
    transform: scale(0.85);
    height: 500px;
    margin: 0 auto;
    width: 250px;
  }
  
  .security-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    height: auto;
  }
  
  .phone-frame {
    position: relative;
    top: -40px;
  }
}

/* FAQ Section */
.faq {
  padding: 3rem 0;
  background-color: var(--site-bg-color);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--light-color);
  margin: 0;
  padding-right: 3rem;
}

.faq-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.faq-toggle::before {
  top: 11px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-toggle::after {
  top: 0;
  left: 11px;
  width: 2px;
  height: 100%;
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 2rem;
  max-height: 500px;
}

.faq-answer p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--light-color);
  margin: 0;
}

/* Media Queries for FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 2rem 0;
  }
  
  .faq-question h3 {
    font-size: 1.6rem;
  }
  
  .faq-text {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .faq-answer p {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .faq {
    padding: 1.5rem 0;
  }
  
  .faq-question {
    padding: 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.5rem;
  }
  
  .faq-text {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.5rem;
  }
  
  .faq-answer p {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* Footer */
.footer {
  background-color: var(--hero-color);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.footer__column {
  flex: 1;
  min-width: 200px;
}

.footer__column h4 {
  color: var(--light-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer__column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer__nav {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 1rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer__payment {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.payment-icon {
  width: 40px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin-bottom: 2rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  color: var(--light-color);
  font-size: 1.6rem;
}

.social-icon:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Media Queries for Footer */
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer__column {
    width: 100%;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer__column h4 {
    font-size: 1.6rem;
  }
  
  .footer__column p {
    font-size: 1.5rem;
  }
  
  .footer__nav a {
    font-size: 1.6rem;
  }
  
  .payment-icon {
    width: 35px;
    height: 21px;
  }
  
  .footer__copyright {
    font-size: 1.3rem;
  }
}

.footer__responsible-gambling {
  padding: 2rem 0;
  text-align: center;
}

.responsible-gambling-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.responsible-gambling-links a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.responsible-gambling-links a:hover {
  transform: translateY(-5px);
  opacity: 0.8;
}

.responsible-gambling-links img {
  height: 25px;
  width: auto;
  max-width: 75px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .responsible-gambling-links {
    gap: 1.5rem;
  }
  
  .responsible-gambling-links img {
    height: 18px;
    max-width: 50px;
  }
}

@media (max-width: 576px) {
  .footer__responsible-gambling {
    padding: 1.5rem 0;
  }
  
  .responsible-gambling-links {
    gap: 1rem;
  }
  
  .responsible-gambling-links img {
    height: 28px;
    max-width: 70px;
  }
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d0a3e 0%, #4a1a5c 100%);
  border-top: 2px solid var(--accent-color);
  z-index: 10000;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  color: var(--light-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cookie-accept {
  background-color: var(--accent-color);
  color: var(--dark-color);
}

.cookie-accept:hover {
  background-color: #ffdd00;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cookie-text h4 {
    font-size: 1.6rem;
  }
  
  .cookie-text p {
    font-size: 1.3rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    padding: 1.2rem;
  }
}

/* Privacy Policy Page */
.privacy-policy {
  padding: 6rem 0;
  background-color: var(--site-bg-color);
  min-height: 80vh;
}

.privacy-policy h1 {
  color: var(--light-color);
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  color: var(--accent-color);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem 0;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.privacy-content p {
  color: var(--light-color);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.privacy-content ul {
  color: var(--light-color);
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.privacy-content li {
  margin-bottom: 0.8rem;
}

.privacy-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.privacy-footer p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.back-link {
  display: inline-block;
  background-color: var(--cta-color);
  color: var(--dark-color);
  padding: 1.2rem 2.4rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.back-link:hover {
  background-color: #78d700;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 4rem 0;
  }
  
  .privacy-policy h1 {
    font-size: 2.8rem;
  }
  
  .privacy-content h2 {
    font-size: 2rem;
  }
  
  .privacy-content p,
  .privacy-content ul {
    font-size: 1.5rem;
  }
}

.table-of-contents {
    background: var(--site-bg-color);
    padding: 2rem 0;
    margin: 0;
    border-top: 1px solid rgba(172, 44, 255, 0.2);
    border-bottom: 1px solid rgba(172, 44, 255, 0.2);
}

.toc-nav {
    max-width: 100%;
}

.toc-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--button-color);
    color: var(--light-color);
    border: 2px solid var(--button-border);
    text-decoration: none;
    white-space: nowrap;
}

.toc-link:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 153, 0.3);
    color: var(--light-color);
}

@media (max-width: 768px) {
    .table-of-contents {
        padding: 1.5rem 0;
    }
    
    .toc-list {
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .toc-link {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
        white-space: normal;
        text-align: center;
        min-width: auto;
    }
}

.casino-interface {
  background-color: var(--site-bg-color);
  padding-top: 5px;
}

.casino-interface__image {
  text-align: center;
}

.casino-interface__image img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .casino-interface__image img {
    width: 100% !important;
  }
}

.game-collection ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.game-collection li {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: var(--transition);
}

.game-collection li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.slots-image {
  text-align: center;
  margin: 2rem 0;
}

.slots-image img {
  width: 80%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.registration-image {
  text-align: center;
  margin: 2rem 0;
}

.registration-image img {
  width: 30%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .game-collection ul {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
  }
  
  .game-collection li {
    padding: 0.8rem;
    font-size: 1.4rem;
  }
  
  .slots-image img {
    width: 90%;
    max-width: none;
  }
  
  .registration-image img {
    width: 90%;
    max-width: none;
  }
  
  .mobile-gaming-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .mobile-gaming-image {
    flex: none;
    order: 1;
    text-align: center;
  }
  
  .mobile-gaming-image img {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .mobile-gaming-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .mobile-gaming-image {
    flex: none;
    order: 1;
    text-align: center;
  }
  
  .mobile-gaming-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
}

.additional-bonuses {
  background-color: var(--site-bg-color);
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .additional-bonuses {
    padding-top: 0;
  }
  
  .additional-bonuses p {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .additional-bonuses {
    padding-top: 0;
  }
  
  .additional-bonuses p {
    font-size: 18px;
    line-height: 1.6;
  }
}

.mobile-gaming,
.customer-service,
.security-info,
.final-verdict,
.registration-process,
.payment-methods {
  background-color: var(--site-bg-color);
}

.mobile-gaming-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.mobile-gaming-text {
  flex: 1;
}

.mobile-gaming-image {
  flex: 0 0 40%;
  text-align: center;
}

.mobile-gaming-image img {
  width: 60%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
}

.payment-table-wrapper {
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: #2a1a3e;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: transparent;
  border-radius: 12px;
}

.payment-table th,
.payment-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid #3d2856;
}

.payment-table th {
  background: #1a0d26;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
}

.payment-table td {
  color: #e0e0e0;
  font-size: 1.5rem;
}

.payment-table tr:nth-child(even) {
  background: #251632;
}

.payment-table tr:hover {
  background: #3a2252;
  transition: all 0.2s ease;
}

.payment-table tr:last-child td {
  border-bottom: none;
}

.payment-table td:nth-child(2),
.payment-table td:nth-child(3),
.payment-table th:nth-child(2),
.payment-table th:nth-child(3) {
  text-align: center;
  font-weight: 600;
}

/* Mobile Card Layout */
@media (max-width: 768px) {
  .payment-table-wrapper {
    margin: 1.5rem 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
  }
  
  .payment-table,
  .payment-table thead,
  .payment-table tbody,
  .payment-table th,
  .payment-table td,
  .payment-table tr {
    display: block;
  }
  
  .payment-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  .payment-table tr {
    background: #2a1a3e;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .payment-table tr:hover {
    background: #2a1a3e;
    transform: none;
  }
  
  .payment-table td {
    border: none;
    position: relative;
    padding: 0.8rem 0;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .payment-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #ac2cff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    flex: 0 0 auto;
    margin-right: 1rem;
  }
  
  .payment-table td:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid #3d2856;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
  }
  
  .payment-table td:first-child:before {
    display: none;
  }
}

