/* --- CUSTOM GUEST SPOT STYLES --- */
  .guest-section {
    background-color: #031119;
    color: #e0e0e0;
    padding: 100px 0;
    min-height: 100vh;
    height: auto;
  }

  .main-titles {
    font-family: "Protest Revolution", sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
  }

  .main-titles::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff007f;
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
  }

  /* Jazykové sloupce */
  .lang-col {
    background: #051b26;
    border: 1px solid rgba(255, 0, 127, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
  }

  .lang-col:hover {
    border-color: rgba(255, 0, 127, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.15);
  }

  .lang-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }

  .lang-header h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .lang-flag {
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  /* Obsahové bloky uvnitř sloupců */
  .info-block {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .info-block i {
    color: #ff007f;
    font-size: 1.4rem;
    margin-top: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
  }

  .info-block p {
    color: #b0b8bc;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
  }

  .info-block b, .info-block strong {
    color: #ffffff;
    font-weight: 600;
  }

  /* CTA sekce dole */
  .guest-cta {
    background: #000000;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
    border: 1px solid rgba(255, 0, 127, 0.2);
    box-shadow: inset 0 0 30px rgba(255, 0, 127, 0.05);
  }

  .guest-cta h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .guest-cta p {
    color: #b0b8bc;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

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

  .btn-neon {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff007f;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .btn-neon:hover {
    background: #ff007f;
    color: #ffffff;
    box-shadow: 0 0 4px #ff007f, 0 0 8px #ff007f, 0 0 12px #ff007f, 0 0 16px #ff007f;
    transform: translateY(-2px);
  }
