/**
 * Gamescom Exhibition Landing Page Styles
 * Custom branding and layout for the Gamescom event page
 */

/* ============================================================================
   Color & Typography Variables
   ============================================================================ */
:root {
  --gamescom-primary: #383773;
  /* Deep Purple - Event branding */
  --gamescom-secondary: #e8d756;
  /* Golden Yellow - Accent */
  --gamescom-dark: #343434;
  --gamescom-light: #e1dac1;
  --gamescom-accent-orange: #ff6c0e;
  /* Warm accent */
  --gamescom-teal: #00A896;
  /* Teal/Green accent */
  --gamescom-red: #C42033;
  /* Red/Burgundy accent */
}

/* ============================================================================
   Header - Full Width Clean Design
   ============================================================================ */
.gamescom-header {
  background: var(--gamescom-accent-orange);
  display: flex;
  align-items: center;
}

.container-xxl {
  width: 85vw !important;
}

.gamescom-header>.container-xxl {
  width: 100% !important;
  max-width: 100% !important;
}

.gamescom-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 1.2rem 2rem;
  max-width: 100%;
  box-sizing: border-box;
}

.gamescom-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.gamescom-logo img {
  height: 3rem;
  width: auto;
}

.gamescom-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
  white-space: nowrap;
}

.gamescom-back-link:hover {
  background: var(--gamescom-red);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.gamescom-back-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* ============================================================================
   Hero Section with Team Grid - Full Width
   ============================================================================ */
.gamescom-hero-with-form {
    background: linear-gradient(135deg, #3d3d6b 0%, #2d2d4a 100%);
    color: white;
    position: relative;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    padding: 0 0rem 5rem 0rem;
}

.gamescom-hero-with-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232, 215, 86, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 168, 150, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Top bar: branding + meet-to-match, single line, full width */
.gamescom-hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 85vw;
  max-width: 90rem;
  margin: 0 auto 2rem;
  z-index: 1;
  position: relative;
  padding: 3rem 2rem 0 2rem;
  box-sizing: border-box;
}

/* Team grid + form, two-column layout */
.gamescom-hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 90%;
  max-width: 90rem;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  align-items: flex-start;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Gamescom Branding Bar */
.gamescom-branding-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0;
}

.gamescom-event-logo img {
  height: 70px;
  width: auto;
}

.meettomatch-btn {
  text-align: right;
}

.meettomatch-btn img {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.meettomatch-btn:hover img {
  transform: scale(1.05);
}

/* Team Grid - stacked vertically, always a 1:1 square */
.gamescom-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 0;
}

.team-member-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 5.33;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  box-shadow: none;
  transition: filter 0.3s ease;
  width: 100%;
  height: auto;
  text-decoration: none;
  color: inherit;
}

.team-member-card:hover {
  cursor: pointer;
  filter: brightness(1.3);
}

.team-member-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  background-size: cover;
}

.team-member-card::before {
  display: none;
}


.team-member-info {
  display: none;
}

.team-member-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: white;
  line-height: 1.2;
}

.team-member-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

/* Background color variants for cards without photos */
.team-member-card.bg-purple {
  background: var(--gamescom-primary);
}

.team-member-card.bg-orange {
  background: var(--gamescom-accent-orange);
}

.team-member-card.bg-teal {
  background: var(--gamescom-teal);
}

.team-member-card.bg-red {
  background: var(--gamescom-red);
}

.team-member-card.bg-yellow {
  background: var(--gamescom-secondary);
  color: var(--gamescom-dark);
}

.team-member-card.bg-yellow .team-member-name,
.team-member-card.bg-yellow .team-member-title {
  color: var(--gamescom-dark);
}

/* ============================================================================
   Company Description Section
   ============================================================================ */
.gamescom-company-description {
  background: var(--gamescom-light);
  padding: 5rem 2rem;
}

/* Text row on top (2 columns), image row below (2 columns) -
   a plain 2-column grid, items placed in DOM order. */
.gamescom-company-description__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1400px;
}

.gamescom-company-description__text {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gamescom-primary);
  font-weight: 800;
  text-align: left;
  margin: 0;
}

/* Both image columns share the same width (their 1fr grid column),
   so they're always equal-width; height is auto, following each
   image's own aspect ratio at that width. */
.gamescom-company-description__image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
}

.gamescom-company-description__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.gamescom-game-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.gamescom-game-logos img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   About Section (Legacy - can be removed if not used)
   ============================================================================ */
.gamescom-about {
  background: white;
  padding: 5rem 2rem;
  border-top: 4px solid var(--gamescom-primary);
  display: none;
}

.gamescom-about .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gamescom-dark);
  margin-bottom: 1.5rem;
}

.gamescom-about .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 500;
}

.gamescom-about__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gamescom-about__list li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

.gamescom-about__list li:last-child {
  border-bottom: none;
}

.gamescom-about__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gamescom-primary);
  font-weight: bold;
  font-size: 1.3rem;
}

/* Stats Grid */
.gamescom-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--gamescom-light) 0%, white 100%);
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--gamescom-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gamescom-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gamescom-about__info {
  background: linear-gradient(135deg, var(--gamescom-light) 0%, white 100%);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--gamescom-secondary);
}

.gamescom-about__info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gamescom-dark);
}

.gamescom-about__info p {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: #555;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gamescom-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

/* ============================================================================
   Services Section (Hidden - Legacy)
   ============================================================================ */
.gamescom-services {
  background: linear-gradient(180deg, #f8f8f8 0%, white 100%);
  padding: 5rem 2rem;
  display: none;
}

.gamescom-services .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gamescom-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gamescom-service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.gamescom-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 20, 147, 0.2);
  border-color: var(--gamescom-primary);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.gamescom-service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--gamescom-dark);
  font-weight: 700;
}

.gamescom-service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  flex-grow: 1;
}

textarea {
  min-height: 60px;
  resize: none;
}



/* Square query container: the aspect-ratio and container-query sizing both live here.
   Design size targets ~500-550px so it lands near native scale at common
   laptop widths above the 992px breakpoint. Tune this to whatever width
   the redesigned form actually fits cleanly at. */
.gamescom-form-container {
  --gs-design-size: 530px;

  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  container-type: inline-size;
  overflow: hidden;
  padding-top: 0;
  position: relative;
}

/* Authored at the fixed design size, then uniformly scaled to fill the square */
.gamescom-form-box {
  background: white;
  color: var(--gamescom-dark);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  width: var(--gs-design-size);
  height: var(--gs-design-size);
  max-width: none;
  overflow: visible;
  margin: 0;

  transform-origin: top left;
  transform: scale(calc(100cqw / var(--gs-design-size)));
}

.gamescom-form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--gamescom-primary);
}

.gamescom-form-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.gamescom-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: .5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0;
  font-size: .8rem;
  color: var(--gamescom-accent-orange);
}

.form-control,
textarea {
  padding: 0rem 1rem 0.625rem 0;
  margin: 0;
  border: none;
  border-bottom: 2px solid #d0d0d0;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.3s ease;
  width: 100%;
  background: transparent;
  box-sizing: border-box;
}

.form-control:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid var(--gamescom-accent-orange);
  padding: 0rem 1rem 0.625rem 0;
  margin: 0;
}

.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #555;
  gap: 0.7rem;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gamescom-primary);
  flex-shrink: 0;
}

.consent-group {
  grid-column: 1 / -1;
  background: #f9f9f9;
  padding: 1.2rem;
  border-radius: 8px;
  border-left: 4px solid var(--gamescom-primary);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gamescom-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
  position: relative;
  top: -0.2rem;
}

.consent-label a {
  color: var(--gamescom-primary);
  text-decoration: none;
  font-weight: 600;
}

.consent-label a:hover {
  text-decoration: underline;
}

.form-message {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gamescom-primary);
  color: white;
  border: none;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--gamescom-accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 108, 14, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================================
   Responsive: Hero with Form
   ============================================================================ */
@media (max-width: 992px) {
  #gamescom_main_form * {
    font-size: 1rem;
  }

  .gamescom-hero-with-form {
    min-height: auto;
    width: 100%;
  }

  .gamescom-hero-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gamescom-branding-bar {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .gamescom-event-logo img {
    height: auto;
    width: 70%;
    max-width: unset;
    position: relative;
    top: -.3rem;
  }

  .meettomatch-btn img {
    height: auto;
    width: 90%;
    max-width: unset;
  }

  .gamescom-team-grid {
    margin-bottom: 2rem;
  }

  /* Below this point the two columns stack vertically, so the square
     constraint (only meaningful side-by-side) is released entirely. */
  .gamescom-form-container {
    padding-top: 0;
    aspect-ratio: auto;
    container-type: normal;
    overflow: visible;
    max-width: 100%;
    margin-inline: 0;
  }

  .gamescom-form-box {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
    padding: 1.5rem;
  }

  .gamescom-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-checkboxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) and (min-width: 577px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  #gamescom_main_form * {
    font-size: 1.2rem;
  }

  body {
    background: var(--gamescom-red);
  }

  .gamescom-hero-layout {
    padding: 7rem 2rem 0 2rem;
  }

  .lp-page {
    margin-top: 0;
  }

  .gamescom-back-link {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }

  .gamescom-company-description__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gamescom-company-description__text {
    font-size: 1.6rem;
  }

  .gamescom-game-logos {
    flex-direction: column;
    gap: 1.5rem;
  }

}

/* ============================================================================
   Footer Styles (Replicated from Main Site)
   ============================================================================ */
.gamescom-footer {
  background: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid #e0e0e0;
}

.gamescom-footer__bottom {
  padding-top: 2rem;
}

.footer_logo {
  height: 50px;
  width: auto;
  margin-bottom: 2rem;
}

.privacy {
  font-size: 0.825rem;
  color: var(--gamescom-dark);
}

.privacy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy ul li {
  margin-bottom: 0.75rem;
  text-align: left;
}

.privacy a {
  color: var(--gamescom-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy a:hover {
  color: var(--gamescom-accent-orange);
}

.lp-footer-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.lp-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gamescom-dark);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lp-social-icon:hover {
  background: var(--gamescom-accent-orange);
  transform: translateY(-3px);
}

.lp-social-svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.lp-social-svg--instagram {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/%3E%3C/svg%3E');
}

.lp-social-svg--x {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/%3E%3C/svg%3E');
}

.lp-social-svg--facebook {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/%3E%3C/svg%3E');
}

.lp-social-svg--linkedin {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/%3E%3C/svg%3E');
}

.lp-social-svg--soundcloud {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M1.175 12.225c-.051 0-.094.046-.101.1l-.233 2.154.233 2.105c.007.058.05.098.101.098.05 0 .09-.04.099-.098l.255-2.105-.27-2.154c0-.057-.045-.1-.096-.1m-.899.828c-.051 0-.09.04-.099.098L0 14.479l.176 1.379c0 .06.045.1.09.1.048 0 .09-.04.098-.1l.205-1.379-.205-1.328c-.008-.058-.05-.098-.098-.098m1.792-.828c-.06 0-.105.046-.106.1l-.254 2.154.254 2.105c.006.058.05.098.106.098.048 0 .09-.04.098-.098l.286-2.105-.286-2.154c-.008-.054-.05-.1-.098-.1m.899-.828c-.06 0-.106.047-.106.1l-.254 2.982.254 2.105c0 .056.045.098.106.098.05 0 .093-.042.098-.098l.283-2.105-.283-2.982c-.005-.053-.048-.1-.098-.1m.9.828c-.063 0-.108.047-.108.1l-.232 2.154.232 2.105c0 .056.045.098.108.098.05 0 .094-.042.094-.098l.273-2.105-.273-2.154c0-.053-.045-.1-.094-.1m.898-.828c-.061 0-.106.047-.106.1l-.262 2.982.262 2.105c0 .056.045.098.106.098.05 0 .095-.042.095-.098l.292-2.105-.292-2.982c0-.053-.046-.1-.095-.1m.899.828c-.065 0-.108.047-.108.1l-.245 2.154.245 2.105c0 .056.043.098.108.098.05 0 .093-.042.097-.098l.276-2.105-.276-2.154c-.004-.053-.047-.1-.097-.1m.9-.828c-.064 0-.108.047-.108.1l-.267 2.982.267 2.105c0 .056.044.098.108.098.054 0 .097-.042.097-.098l.297-2.105-.297-2.982c0-.053-.043-.1-.097-.1m.898-.828c-.066 0-.11.047-.11.1l-.276 3.81.276 2.105c0 .056.044.098.11.098.052 0 .097-.042.097-.098l.307-2.105-.307-3.81c0-.053-.045-.1-.097-.1m.9.828c-.068 0-.11.047-.11.1l-.278 2.982.278 2.105c0 .056.042.098.11.098.055 0 .1-.042.1-.098l.326-2.105-.326-2.982c0-.053-.045-.1-.1-.1m.899-.828c-.068 0-.11.047-.11.1l-.287 3.81.287 2.105c0 .056.042.098.11.098.056 0 .1-.042.1-.098l.335-2.105-.335-3.81c0-.053-.044-.1-.1-.1m.899.828c-.069 0-.11.047-.11.1l-.293 2.982.293 2.105c0 .056.041.098.11.098.057 0 .1-.042.1-.098l.346-2.105-.346-2.982c0-.053-.043-.1-.1-.1m.898-.828c-.07 0-.11.047-.11.1l-.302 3.81.302 2.105c0 .056.04.098.11.098.058 0 .1-.042.1-.098l.357-2.105-.357-3.81c0-.053-.042-.1-.1-.1m1.024.131c-.065 0-.115.049-.115.106l-.291 3.702.291 2.097c0 .057.05.107.115.107.057 0 .106-.048.106-.107l.325-2.097-.325-3.702c-.008-.057-.056-.106-.106-.106zm-21.725 2.83c-.061 0-.106.047-.106.1l-.229 1.379.229 1.326c0 .056.045.098.106.098.05 0 .09-.04.099-.098l.254-1.326-.254-1.379c-.005-.053-.048-.1-.099-.1m23.127-.244c-.04 0-.068.029-.08.074l-.252 1.625.253 1.596c.01.045.04.074.08.074.03 0 .066-.029.076-.074l.281-1.596-.28-1.625c-.01-.045-.05-.074-.078-.074m-22.227.244c-.063 0-.108.047-.108.1l-.229 1.379.229 1.326c0 .056.045.098.108.098.05 0 .09-.04.099-.098l.242-1.326-.242-1.379c-.009-.053-.049-.1-.099-.1m1.798-.346c-.064 0-.108.047-.108.1l-.262 1.723.262 1.672c0 .056.044.098.108.098.05 0 .092-.042.092-.098l.293-1.672-.293-1.723c0-.053-.042-.1-.092-.1m.899.346c-.065 0-.108.047-.108.1l-.267 1.379.267 1.326c0 .056.043.098.108.098.052 0 .097-.042.097-.098l.297-1.326-.297-1.379c0-.053-.045-.1-.097-.1m.898-.346c-.066 0-.11.047-.11.1l-.276 1.723.276 1.672c0 .056.044.098.11.098.054 0 .097-.042.097-.098l.307-1.672-.307-1.723c0-.053-.043-.1-.097-.1m.9.346c-.067 0-.11.047-.11.1l-.278 1.379.278 1.326c0 .056.043.098.11.098.055 0 .1-.042.1-.098l.326-1.326-.326-1.379c0-.053-.045-.1-.1-.1m.898-.346c-.068 0-.11.047-.11.1l-.287 1.723.287 1.672c0 .056.042.098.11.098.056 0 .1-.042.1-.098l.335-1.672-.335-1.723c0-.053-.044-.1-.1-.1m.9.346c-.07 0-.11.047-.11.1l-.293 1.379.293 1.326c0 .056.04.098.11.098.057 0 .1-.042.1-.098l.346-1.326-.346-1.379c0-.053-.043-.1-.1-.1m.898-.346c-.07 0-.11.047-.11.1l-.302 1.723.302 1.672c0 .056.04.098.11.098.058 0 .1-.042.1-.098l.357-1.672-.357-1.723c0-.053-.042-.1-.1-.1zm2.719-.602c-.061 0-.106.047-.106.1l-.262 1.379.262 1.326c0 .056.045.098.106.098.05 0 .095-.042.095-.098l.293-1.326-.293-1.379c0-.053-.045-.1-.095-.1zm1.798.346c-.061 0-.106.047-.106.1l-.229 1.379.229 1.326c0 .056.045.098.106.098.05 0 .09-.04.099-.098l.254-1.326-.254-1.379c-.009-.053-.049-.1-.099-.1zm.899-.346c-.063 0-.108.047-.108.1l-.229 1.723.229 1.672c0 .056.045.098.108.098.05 0 .09-.042.099-.098l.242-1.672-.242-1.723c-.009-.053-.049-.1-.099-.1zm.899.346c-.064 0-.108.047-.108.1l-.262 1.379.262 1.326c0 .056.044.098.108.098.05 0 .092-.042.092-.098l.293-1.326-.293-1.379c0-.053-.042-.1-.092-.1zm.898-.346c-.065 0-.108.047-.108.1l-.267 1.723.267 1.672c0 .056.043.098.108.098.052 0 .097-.042.097-.098l.297-1.672-.297-1.723c0-.053-.045-.1-.097-.1zm.9.346c-.066 0-.11.047-.11.1l-.276 1.379.276 1.326c0 .056.044.098.11.098.054 0 .097-.042.097-.098l.307-1.326-.307-1.379c0-.053-.043-.1-.097-.1zm.898-.346c-.067 0-.11.047-.11.1l-.278 1.723.278 1.672c0 .056.043.098.11.098.055 0 .1-.042.1-.098l.326-1.672-.326-1.723c0-.053-.045-.1-.1-.1zm.9.346c-.068 0-.11.047-.11.1l-.287 1.379.287 1.326c0 .056.042.098.11.098.056 0 .1-.042.1-.098l.335-1.326-.335-1.379c0-.053-.044-.1-.1-.1zm.898-.346c-.069 0-.11.047-.11.1l-.293 1.723.293 1.672c0 .056.041.098.11.098.057 0 .1-.042.1-.098l.346-1.672-.346-1.723c0-.053-.043-.1-.1-.1zm.9.346c-.07 0-.11.047-.11.1l-.302 1.379.302 1.326c0 .056.04.098.11.098.058 0 .1-.042.1-.098l.357-1.326-.357-1.379c0-.053-.042-.1-.1-.1z"/%3E%3C/svg%3E');
}

.lp-widget-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-widget-contacts ul li {
  margin-bottom: 1rem;
}

.lp-widget-contacts span {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--gamescom-dark);
}

.lp-widget-contacts p,
.lp-widget-contacts a {
  color: #666;
  text-decoration: none;
  line-height: 1.6;
}

.lp-widget-contacts a:hover {
  color: var(--gamescom-accent-orange);
}

#backtotop {
  width: 4rem;
  height: 8rem;
  font-size: 4rem;
  position: fixed;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  z-index: 9999;
  color: var(--gamescom-dark);
}

#backtotop:hover {
  opacity: .7;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */
/* ============================================================================
   Animations
   ============================================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gamescom-hero__content {
  animation: fadeInUp 0.8s ease-out;
}

.gamescom-service-card {
  animation: fadeInUp 0.6s ease-out both;
}

.gamescom-service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.gamescom-service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.gamescom-service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.gamescom-service-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ============================================================================
   Dark mode support
   ============================================================================ */
@media (prefers-color-scheme: dark) {
  .gamescom-about {
    background: #222;
    color: #e0e0e0;
  }

  .gamescom-about__list li {
    border-bottom-color: #333;
  }

  .section-title {
    color: white;
  }

  .form-control {
    background: white;
    color: #2d2d2d;
    border-color: #444;
  }

  .form-control:focus {
    border-color: var(--gamescom-primary);
  }
}