/* Mobile styles - max 768px */
@media screen and (max-width: 768px) {
  body {
    padding: 0;
  }

  .splash-box {
    padding: 28px 20px;
    margin: 24px 24px;
    max-width: 100%;
    border-radius: 18px;
  }

  .logo img {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .link-btn {
    padding: 12px 24px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .features-box {
    padding: 20px 16px;
    margin: 24px;
    max-width: 100%;
    border-radius: 16px;
  }

  .features-box h2 {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .features-table td {
    display: block;
    padding: 8px 4px;
    width: 100%;
  }

  .features-table td:first-child {
    white-space: normal;
    padding-bottom: 4px;
    border-bottom: none;
  }

  .features-table td:last-child {
    padding-top: 0;
    padding-bottom: 16px;
    font-size: 0.9rem;
  }

  .features-table tr {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 8px 0;
  }

  .features-table tr:last-child {
    border-bottom: none;
  }

  footer {
    font-size: 0.8rem;
    padding: 16px 0;
  }
}

/* Extra small devices - max 480px */
@media screen and (max-width: 480px) {
  body {
    padding: 0;
  }

  .splash-box {
    padding: 24px 16px;
    margin: 16px 16px;
  }

  .logo img {
    width: 80px;
    height: 80px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .link-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .features-box {
    padding: 16px 12px;
    border-radius: 0;
    margin-bottom: 0;
  }

  .features-box h2 {
    font-size: 1.1rem;
  }

  .features-table td:first-child {
    font-size: 0.95rem;
  }

  .features-table td:last-child {
    font-size: 0.85rem;
  }
}