@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .bottomnav {
    display: none;
  }

  .nav {
    padding: 0 max(32px, calc((100% - 1160px) / 2));
    height: 70px;
  }

  .page {
    max-width: 1160px;
    padding: 36px 32px 60px;
  }

  .welcome {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
  }

  .welcome h1 {
    font-size: 38px;
    letter-spacing: -0.05em;
  }

  .welcome p {
    font-size: 15px;
  }

  .search-wrapper {
    max-width: 320px;
    margin-bottom: 0;
  }

  .clubScroller {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    overflow: visible;
    gap: 16px;
  }

  .club {
    min-width: 0;
    max-width: none;
  }

  .club-cover {
    height: 120px;
  }

  .discover {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .creatorcover {
    height: 160px;
  }

  .drop {
    padding: 20px 24px;
  }

  .sheet {
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    animation: zoomIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes zoomIn {
    from {
      transform: scale(0.95);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .toast {
    bottom: 30px;
  }
}
