/* 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: "Platypi", sans-serif;
  background: #0d0000;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: #0d0000;
  padding: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.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: #0d0000;
}

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

.hero-title {
  flex: 1;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--btn-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

  color: #fff;
}

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

.hero-description p {
  margin: 0;
}
.hero-description-f {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Platypi;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 90%; /* 25.2px */
}
.hero-description-s {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Platypi;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: -0.42px;
}

.important-note {
  padding: 60px 0;
  background: #0d0000;
}

.important-note h2 {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Platypi;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%; /* 36px */
  margin-bottom: 32px;
}

.important-note p {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Platypi;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.48px;
}

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

.footer-nav {
  display: flex;
  justify-content: center;
  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: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Platypi;
  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: center;
  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;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: var(--text-light);
}

.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: #0d0000;
  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: Platypi;
  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: "Platypi", 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: Platypi;
  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: Platypi;
  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;
  gap: 20px;
  align-items: flex-start;
}

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

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

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

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

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

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

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

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

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

.betting-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.betting-card {
  border-radius: 32px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  gap: 24px;

  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #ff3535 0%, #992020 100%);
}

.betting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(255, 68, 68, 0.4);
}

.card-content {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 1;
}

.logo-section {
  min-width: 200px;
  display: flex;
  justify-content: center;
}

.logo-text {
  color: white;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pmu-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pmu-main {
  font-size: 72px;
  font-style: italic;
  font-weight: 800;
  color: white;
  line-height: 0.9;
}

.pmu-fr {
  font-size: 32px;
  color: white;
  font-weight: 600;
}

.pmu-sport {
  font-size: 28px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.genybet-logo {
  background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
  color: white;
  font-size: 52px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 12px;
  font-style: italic;
  display: inline-block;
}

.parions-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.parions-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parions-icon::before,
.parions-icon::after {
  content: "";
  position: absolute;
  background: #0066cc;
  border-radius: 4px;
}

.parions-icon::before {
  width: 24px;
  height: 24px;
  top: 12px;
  left: 12px;
  transform: rotate(45deg);
}

.parions-icon::after {
  width: 24px;
  height: 24px;
  bottom: 12px;
  right: 12px;
  transform: rotate(45deg);
}

.parions-text {
  display: flex;
  flex-direction: column;
  color: white;
}

.parions-main {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.parions-sport {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.parions-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.description {
  color: white;
  font-size: 18px;
  line-height: 1.5;
  max-width: 420px;
  font-weight: 400;

  color: #fff;
  font-family: Platypi;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: -0.36px;
}

.offer-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.b-pamy-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.b-info {
  text-align: left;
}

.b-amount {
  color: white;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;

  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Platypi;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 32px */
  letter-spacing: -0.96px;
}

.free-bet {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;

  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Platypi;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 25.5px */
  letter-spacing: -0.51px;
  text-transform: uppercase;
}

.p-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pamy-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pamy-icon {
  height: 32px;
  font-weight: 700;
}

.vis {
  color: #1a1f71;
  background: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-style: italic;
  font-size: 24px;
}

.paypal {
  color: #003087;
  background: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 700;
}

.mas {
  width: 48px;
  height: 32px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mas::before,
.mas::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
}

.mas::before {
  background: #eb001b;
  left: 8px;
}

.mas::after {
  background: #ff5f00;
  right: 8px;
  mix-blend-mode: multiply;
}

.paysafecard {
  color: #0092dd;
  background: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
}

.cta-button {
  background: white;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  padding: 20px 25px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  white-space: nowrap;

  border-radius: 59px;
  background: linear-gradient(0deg, #fff 0%, #fff 100%),
    linear-gradient(180deg, #e8e9e6 0%, #a6a29f 100%);
  color: #0d0000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Platypi;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 19.8px */
  letter-spacing: -0.54px;
  text-decoration: none;
  text-align: center;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.cta-button:active {
  transform: scale(0.98);
}

@media (max-width: 1200px) {
  .betting-card {
    padding: 36px 40px;
  }

  .card-content {
    gap: 32px;
  }

  .description {
    font-size: 16px;
    max-width: 350px;
  }

  .b-amount {
    font-size: 64px;
  }

  .free-bet {
    font-size: 20px;
  }

  .cta-button {
    font-size: 24px;
    padding: 20px 48px;
  }
}

@media (max-width: 900px) {
  .betting-card {
    flex-direction: column;
    gap: 40px;
    padding: 48px 40px 56px;
    align-items: stretch;
  }

  .card-content {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: center;
  }

  .offer-section {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: stretch;
  }

  .b-pamy-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 24px;
  }

  .logo-section {
    min-width: auto;
    width: 100%;
    text-align: center;
  }

  .logo-text {
    font-size: 72px;
  }

  .description {
    max-width: 100%;
    text-align: left;
    font-size: 19px;
    line-height: 1.55;
    padding: 0 8px;
  }

  .b-info {
    text-align: left;
    flex-shrink: 0;
  }

  .b-amount {
    font-size: 72px;
  }

  .free-bet {
    font-size: 22px;
  }

  .p-methods {
    align-items: flex-end;
    flex-shrink: 0;
    gap: 10px;
  }

  .pamy-icons {
    justify-content: flex-end;
    gap: 14px;
  }

  .pamy-icon {
    height: 36px;
  }

  .vis {
    font-size: 26px;
    padding: 8px 14px;
  }

  .paypal {
    font-size: 24px;
    padding: 8px 14px;
  }

  .mas {
    width: 52px;
    height: 36px;
  }

  .mas::before,
  .mas::after {
    width: 22px;
    height: 22px;
  }

  .mas::before {
    left: 9px;
  }

  .mas::after {
    right: 9px;
  }

  .paysafecard {
    font-size: 19px;
    padding: 8px 14px;
  }

  .cta-button {
    width: 100%;
    padding: 26px 48px;
    font-size: 30px;
  }

  .pmu-main {
    font-size: 88px;
  }

  .pmu-fr {
    font-size: 38px;
  }

  .pmu-sport {
    font-size: 34px;
  }

  .pmu-logo {
    align-items: center;
  }

  .genybet-logo {
    font-size: 60px;
    padding: 16px 32px;
  }

  .parions-logo {
    justify-content: center;
  }

  .parions-icon {
    width: 76px;
    height: 76px;
  }

  .parions-icon::before,
  .parions-icon::after {
    width: 30px;
    height: 30px;
  }

  .parions-icon::before {
    top: 15px;
    left: 15px;
  }

  .parions-icon::after {
    bottom: 15px;
    right: 15px;
  }

  .parions-main {
    font-size: 38px;
  }

  .parions-sport {
    font-size: 22px;
  }

  .parions-sub {
    font-size: 16px;
  }
}
