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

:root {
  --primary-green: #1a5f4f;
  --medium-green: #2d7a65;
  --light-green: #3da88a;
  --accent-green: #2dd4bf;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #1a1a1a;
  --border-radius: 20px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Outfit", sans-serif;
  background: linear-gradient(180deg, #014432 0%, #2ec18b 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  padding: 50px 40px;
  border-radius: 30px;
  max-width: 750px;
  width: 90%;
  text-align: center;
  color: var(--white);
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);


  border-radius: 40px;
border: 1px solid rgba(232, 232, 237, 0.08);
background: linear-gradient(180deg, #014432 0%, #2EC18B 100%);
box-shadow: 0 0 32.5px 24px rgba(0, 0, 0, 0.15);

}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.modal-content .sub-text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.modal-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Outfit", sans-serif;
  min-width: 180px;

  border-radius: 40px;
background: linear-gradient(180deg, #FFF 0%, #C8C8C8 100%);

color: #000;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 19.8px */
letter-spacing: -0.54px;
}

.modal-btn.primary {
  background-color: var(--white);
  color: var(--primary-green);
  color: #000;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 19.8px */
letter-spacing: -0.54px;
}

.modal-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.modal-btn.secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #000;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 19.8px */
letter-spacing: -0.54px;
}

.modal-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);

  
}

/* Header */
header {
  background-color: transparent;
  padding: 20px 0;
  text-align: center;
}

.logo {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
}
.logo a {
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
.hero {
  padding: 60px 20px 80px;
  background: transparent;
  padding-bottom: 0;
}

.hero .container {
  max-width: 1400px;
  gap: 40px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 50px;
  text-align: left;
  max-width: 652px;
}

.hero-content {
  gap: 60px;
  align-items: center;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.hero-image {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.hero .container {
  display: flex;
  justify-content: space-between;
}

/* Platforms Section */
.platforms {
  padding: 60px 20px;
  margin-top: 20px;
}

.platforms .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1400px;
  align-items: center;
}

.platform-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 32px;
  display: grid;
  grid-template-columns: 320px 1fr 250px 200px;
  align-items: center;
  gap: 50px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  max-width: 1100px;
}

.platform-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Desktop: wrapper shows items in a row */
.platform-content-wrapper {
  display: contents;
}

.platform-logo {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;

  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
}
.platform-logo img {
}

.platform-logo.parions {
  flex-direction: column;
  gap: 10px;
}

.parions-icon {
  width: 50px;
  height: auto;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
}

.logo-text.pmu {
  font-size: 2.8rem;
}

.logo-text.pmu .fr {
  color: #ff6b35;
  font-size: 1.2rem;
}

.logo-text.pmu .sport {
  font-size: 1.3rem;
  font-weight: 600;
}

.logo-text.genybet {
  font-size: 2.3rem;
}

.logo-text.genybet .orange {
  color: #ff8c42;
}

.platform-logo.parions .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
}

.platform-logo.parions .sport-blue {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1e3a8a;
}

.platform-logo.parions .enligne {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.platform-offer {
  text-align: left;
}

.offer-amount {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;

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

.offer-details {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
}

.platform-p img {
  width: 100%;
  max-height: 70px;
}

.platform-btn {
  background-color: var(--white);
  color: var(--text-dark);
  padding: 20px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
  text-align: center;

  border-radius: 40px;
  background: linear-gradient(180deg, #fff 0%, #c8c8c8 100%);
}

.platform-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Why Choose Section */
.why-choose {
  padding: 60px 20px;
}
.why-choose .container {
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  max-width: 1100px;
}

.why-choose h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.why-choose p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Important Note Section */
.important-note {
  padding: 0px 20px;
}
.important-note .container {
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  max-width: 1100px;
}

.important-note h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.important-note p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Legal Mentions Section */
.legal-mentions {
  padding: 60px 20px;
}
.legal-mentions .container {
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  max-width: 1100px;
}

.legal-mentions h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.legal-mentions p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Footer */
footer {
  padding: 60px 20px 30px;
}

.footer-logo h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.footer-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-partners img {
  max-width: 130px;
  height: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.85;
}

.responsible-gaming {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.responsible-gaming img {
  width: 30px;
}

.age-badge {
  background-color: #e74c3c;
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .platform-card {
    grid-template-columns: 240px 1fr 220px 180px;
    gap: 35px;
    padding: 35px 40px;
  }

  .offer-amount {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-image {
    text-align: center;
  }

  .platform-card {
    grid-template-columns: 200px 1fr 200px 160px;
    gap: 25px;
    padding: 30px 25px;
  }

  .logo-text {
    font-size: 2rem;
  }

  .logo-text.pmu {
    font-size: 2.3rem;
  }

  .offer-amount {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px 60px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-image img {
    max-width: 350px;
  }

  .platforms {
    padding: 40px 20px;
  }

  /* Mobile: change to flex layout */
  .platform-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
    grid-template-columns: none;
  }

  /* Mobile: wrapper becomes flex row */
  .platform-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .platform-logo {
    width: 100%;
    padding: 25px;
    min-height: 120px;
  }

  .platform-offer {
    text-align: left;
    flex-shrink: 0;
  }

  .platform-p {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    max-width: 180px;
    flex-shrink: 0;
  }

  .platform-btn {
    width: 100%;
  }

  .logo-text {
    font-size: 2rem;
  }

  .logo-text.pmu {
    font-size: 2.3rem;
  }

  .logo-text.genybet {
    font-size: 2rem;
  }
  .hero .container{
    flex-direction: column;
  }
  .hero{
    padding-bottom: 0;
  }
  .offer-amount {
    font-size: 2.8rem;
  }

  .offer-details {
    font-size: 0.95rem;
  }

  .platform-btn {
    padding: 16px 45px;
    font-size: 1rem;
  }

  .why-choose,
  .important-note,
  .legal-mentions {
    padding: 40px 20px;
  }
  .important-note{
    padding-top: 0;
    padding-bottom: 0;
  }

  .why-choose h2,
  .important-note h2,
  .legal-mentions h2 {
    font-size: 2rem;
  }

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

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .modal-content p {
    font-size: 1rem;
  }

  .modal-btn {
    min-width: 150px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-partners {
    gap: 25px;
  }
  .hero .container{
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-image img {
    max-width: 280px;
  }

  .logo-text {
    font-size: 1.8rem;
  }

  .logo-text.pmu {
    font-size: 2rem;
  }

  .logo-text.genybet {
    font-size: 1.8rem;
  }

  .platform-logo.parions .logo-text {
    font-size: 1.3rem;
  }

  .offer-amount {
    font-size: 2.5rem;
  }

  .platform-p {
    max-width: 160px;
  }

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

  .modal-btn {
    width: 100%;
  }

  .footer-partners img {
    max-width: 90px;
  }

  .footer-nav {

    gap: 15px;
    text-align: center;
  }
  .hero .container{
    flex-direction: column;
  }
}
.top_content {
  background: rgba(255, 255, 255, 0.05);
}
