.container {
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px 80px 20px;
	margin-top: -40px;
	position: relative;
	z-index: 2;
}

.cards-wrapper {
	display: flex;
	justify-content: center;
	gap: 32px;
	width: 100%;
}

.column-left,
.column-right {
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 1;
	min-width: 0;
}

/* Footer */
.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--color-transparent);
}

.footer-container {
  width: 100%;
  max-width: 1160px;
  background-color: var(--color-bg-secondary);
  border-radius: 20px 20px 0 0;
  padding: 28px 36px;
  box-sizing: border-box;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 30px;
  background-color: var(--color-accent-primary);
  color: var(--color-accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
	transition: filter 0.2s ease;
}
.social-btn:hover {
	filter: brightness(0.95);
}
.social-btn:active {
	filter: brightness(0.8);
}

.social-btn .icon-svg {
  width: 28px;
  height: 28px;
}

.social-btn.glup-btn {
  width: 46px;
  padding: 0;
  gap: 0;
	background-color: var(--color-accent-secondary);
	border: none;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              filter 0.2s ease;
}

.glup-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.glup-text {
  max-width: 0;
  opacity: 0;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent-primary);
	will-change: max-width, opacity, margin-left;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.2s ease, 
              margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	user-select: none;
}

.social-btn.glup-btn.expanded {
  width: 105px;
  border-radius: 23px;
  padding: 0 14px;
  justify-content: flex-start;
}

.social-btn.glup-btn.expanded .glup-text {
  max-width: 60px;
  opacity: 1;
  margin-left: 8px;
}

.lang-btn {
	position: relative;
	overflow: hidden;

  width: 46px;
  height: 46px;
  border-radius: 30px;
  background-color: var(--color-bg-tertiary);
  color: var(--color-accent-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lang-btn:hover {
  background-color: var(--color-bg-hover);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-tertiary);
  margin: 50px 0 12px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nickname {
  font-family: 'Planet Kosmos', 'JetBrains Mono', sans-serif;
  font-size: 2rem;
  color: var(--color-text-primary);
	cursor: default;
}

.inspired-btn {
	position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent-secondary);
  color: var(--color-accent-primary);
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.813rem;
  transition: background-color 0.2s ease;
}

.inspired-btn:hover {
  background-color: var(--color-accent-hover);
}

.inspired-btn .heart-icon {
  width: 15px;
  height: 15px;
  color: var(--color-accent-primary);
}