/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #3d1a1a;
  --secondary-bg: #2a1010;
  --accent-red: #c94d4d;
  --text-light: #f5e6d3;
  --text-white: #ffffff;
  --btn-primary: #e8c878;
  --btn-hover: #d4b564;
  --card-orange: linear-gradient(180deg, #f5e6b8 0%, #e8a86d 50%, #c94d4d 100%);
  --card-yellow: linear-gradient(180deg, #fef5d8 0%, #f5d68a 50%, #e8a86d 100%);
  --card-red: linear-gradient(180deg, #e8a86d 0%, #d47a5c 50%, #c94d4d 100%);
  --card-coral: linear-gradient(180deg, #fef5d8 0%, #f5c88a 50%, #d47a5c 100%);
}

body {
  font-family: "Unbounded", sans-serif;
  background: #000;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  margin-top: 1px;
}


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

/* Header */
.header {
  padding: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

  background: rgba(255, 255, 255, 0.1);
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  letter-spacing: 1px;
}
.logo a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: #000;
}

.hero-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.hero-title {
  flex: 1;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 56px;
  font-style: normal;
  font-weight: 900;
  line-height: 90%;
}
.hero-title span {
  color: #b2ee4c;
}

.hero-description {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  display: flex;

  gap: 20px;
  margin-top: 48px;
}

.hero-description p {
  margin: 0;
  max-width: 286px;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: -0.42px;
}

/* Platforms Section */
.platforms {
  padding: 60px 0;
  background: #000;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px;
}

.pl-card {
  padding: 40px 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;

  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #b2ee4c;
}

/* .pl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 8px;
    z-index: 0;
} */

.pl-card > * {
  position: relative;
  z-index: 1;
}

.pl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.platform-logo {
  width: 80%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
}

.platform-logo img {
  max-width: 180px;

  object-fit: contain;
}

.platform-info {
  text-align: center;
  color: var(--text-white);
}

.platform-bonus {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.platform-freebets {
  color: #000;
  text-align: center;
  font-family: Unbounded;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: -0.36px;
}

.pla-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-white);
}

.rating-number {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 28px */
}

.stars {
  font-size: 20px;
  color: #ffd700;
  letter-spacing: 2px;
}

.btn-platform {
  background-color: var(--btn-primary);
  color: var(--secondary-bg);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Unbounded", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  border-radius: 59px;
  background: linear-gradient(180deg, #f7e38d 0%, #eba44a 100%),
    linear-gradient(180deg, #e8e9e6 0%, #a6a29f 100%);
  text-align: center;
  text-decoration: none;

  border-radius: 59px;
  background: #fff;
}

.btn-platform:hover {
  background-color: var(--btn-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Important Note Section */
.imp-note {
  padding: 60px 0;
  background: #000;
}

.imp-note h2 {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 55px */
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}

.imp-note p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--text-light);
}

/* Footer */
.footer {
  padding: 50px 0 30px;
  background: #b2ee4c;
}

.footer-nav {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;

  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: -0.48px;
}

.footer-nav a:hover {
  color: var(--btn-primary);
}

.footer-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 20px 0;
}

.logo-item img {
  height: 50px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
  max-width: 153px;
}

.logo-item img:hover {
  filter: brightness(1.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;

  font-size: 14px;
  color: var(--text-light);
}
.footer-bottom p {
  color: #000;
  font-family: Unbounded;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  letter-spacing: 0.12px;
}

.age-badge {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-light);
}

/* Modal Styles */
.modal {
  display: flex;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #3d1a1a 0%, #2a1010 100%);
  padding: 50px;
  border-radius: 20px;
  max-width: 878px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--accent-red);

  border-radius: 10px;
  border: 1px solid rgba(232, 232, 237, 0.08);
  background: #000;
  box-shadow: 0 0 32.5px 24px rgba(0, 0, 0, 0.15);
}

.modal-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--btn-primary);
  margin-bottom: 20px;
  text-align: left;

  color: #fff;
  font-family: Unbounded;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 60px */
}

.modal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 15px;
}

.age-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.age-subtext {
  font-size: 15px;
  margin-bottom: 30px;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Unbounded", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;

  border-radius: 40px;
  background: #fff;
}

.btn-primary {
  background-color: var(--btn-primary);
  color: var(--secondary-bg);
  box-shadow: 0 4px 15px rgba(232, 200, 120, 0.3);
  color: #5a0909;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 19.8px */
  letter-spacing: -0.54px;
  border-radius: 40px;
  background: #fff;
}

.btn-primary:hover {
  background-color: var(--btn-hover);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  color: var(--btn-primary);
  border: 2px solid var(--btn-primary);
  color: #5a0909;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 19.8px */
  letter-spacing: -0.54px;

  border-radius: 40px;
  background: #fff;
}

.btn-secondary:hover {
  background-color: var(--btn-primary);
  color: var(--secondary-bg);
}
.d-flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;

  gap: 20px;
  align-items: center;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-title {
    font-size: 36px;
  }

  .platforms-grid {
    gap: 20px;
    padding: 30px;
  }

  .footer-logos {
    gap: 20px;
  }

  .logo-item img {
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .logo {
    font-size: 24px;
  }
  .d-flex {
    flex-direction: column;
  }
  .hero {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .platforms {
    padding: 40px 0;
  }

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

  .pl-card {
    padding: 30px 20px;
  }

  .platform-bonus {
    font-size: 36px;
  }

  .rating-number {
    font-size: 30px;
  }

  .btn-platform {
    font-size: 16px;
    padding: 12px 35px;
  }

  .imp-note h2 {
    font-size: 28px;
  }

  .imp-note p {
    font-size: 15px;
  }

  .footer-nav {
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .footer-logos {
    gap: 15px;
    justify-content: flex-start;
  }

  .logo-item img {
    height: 35px;
  }

  .footer-bottom {
    gap: 20px;
    text-align: center;
  }

  .age-badge {
    font-size: 28px;
  }

  .modal-content {
    padding: 30px;
    width: 95%;
  }

  .modal-content h2 {
    font-size: 26px;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: auto;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    font-size: 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
  }

  .platform-logo {
    height: 70px;
  }

  .platform-logo img {
    max-width: 150px;
    max-height: 50px;
  }

  .platform-bonus {
    font-size: 32px;
  }

  .platform-freebets {
    font-size: 14px;
  }

  .rating-number {
    font-size: 26px;
  }

  .stars {
    font-size: 16px;
  }

  .btn-platform {
    font-size: 15px;
    padding: 10px 30px;
  }

  .imp-note h2 {
    font-size: 24px;
  }

  .imp-note p {
    font-size: 14px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .logo-item img {
    height: 37px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .age-badge {
    font-size: 24px;
  }

  .modal-content {
    padding: 25px;
  }

  .modal-content h2 {
    font-size: 22px;
  }

  .modal-content p {
    font-size: 14px;
  }

  .age-text {
    font-size: 18px;
  }

  .age-subtext {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 15px;
    padding: 12px 25px;
  }
}
