:root {
  --bg-color: #242424;
  --text-color: #eaeaea;
  --muted-text: #b5b5b5;
  --accent: #4da3ff;
  --border-color: #3a3a3a;
  --button-bg: #4da3ff;
  --button-text: #0f0f0f;
  --button-orange-bg: #ff7f00;
  --button-orange-hover: #e67300;
  --social-color: #b5b5b5;
  --social-hover: #4da3ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-left img {
  width: 80px;
  height: auto;
}

.header-left h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
}

.language-switcher {
  position: absolute;
  top: 0;
  right: 0;
}

.language-switcher a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.language-switcher img {
  width: 24px;
  height: 18px;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

h1.title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted-text);
  margin-bottom: 30px;
}

.description p {
  margin-bottom: 15px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.cta-primary,
.cta-orange {
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary {
  background-color: var(--button-bg);
  color: var(--button-text);
}

.cta-orange {
  background-color: var(--button-orange-bg);
  color: #fff;
}

.social-proof {
  text-align: center;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 15px;
  border-radius: 6px;
  background-color: rgba(77,163,255,0.05);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-top: 40px;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.social-icons a {
  color: var(--social-color);
  font-size: 1.2rem;
  margin-left: 15px;
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: center;
  }

  .header-left {
    flex-direction: column;
  }

  .cta-group a {
    width: 100%;
    text-align: center;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }
}

/* Social Sharing Styles - FIXED VERSION */
.social-sharing {
  margin: 2rem 0;
  padding: 0.0rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: none; /* FIX: Removed bottom border */
}

.social-sharing h3 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.social-sharing .social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: white;
  color: #000;
  flex-shrink: 0; /* Prevents buttons from shrinking */
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Facebook - Blue Icon */
.social-icon.facebook {
  color: #1877F2;
}

/* Instagram - Gradient Icon */
.social-icon.instagram {
  position: relative;
  color: transparent;
}

.social-icon.instagram i {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* X (Twitter) - Black Icon */
.social-icon.twitter {
  color: #000000;
}

.copy-confirmation {
  margin-top: 1rem;
  padding: 0.2rem 1.2rem;
  background-color: #4CAF50;
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.copy-confirmation.show {
  opacity: 1;
}

@media (max-width: 768px) {
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .social-sharing .social-icons {
    gap: 1rem;
  }
}

/* FORCE EQUAL SPACING FIX */
.social-sharing .social-icons {
  gap: 1.5rem !important;
  justify-content: center !important;
}

.social-sharing .social-icons > * {
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

/* Checkmark paragraph styling - ADDED */
.description p {
  position: relative;
  padding-left: 2em; /* Creates space for the icon */
  margin-bottom: 15px;
}

.description p i.fa-check-circle {
  position: absolute;
  left: 0;
  top: 0.25em; /* Adjusts vertical alignment */
  color: #4cff4c;
}

/* FIX FOR DOUBLE BORDERS AND SPACING - ADDED */
.social-sharing {
  border-bottom: none !important; /* Remove bottom border */
  margin-bottom: 0px !important; /* Reduce space below */
  padding-bottom: 0px !important; /* Reduce padding */
}

.footer {
  margin-top: 0px !important; /* Reduce space above footer */
  padding-top: 15px !important;
}