/* =============================================
   WRENCHIZ BIO SITE — style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

@font-face {
  font-family: 'Coolvetica';
  src: url('font/Coolvetica.otf') format('opentype');
  font-weight: normal;
  font-display: swap;
}

/* ---- Variables ---- */
:root {
  --accent: #ffffff;
  --accent2: #aaaaaa;
  --text: #f0f0f0;
  --text-muted: rgba(255,255,255,0.4);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);
  --player-h: 80px;
  --radius: 18px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: 'Space Mono', monospace;
  color: var(--text);
  overflow-x: hidden;
  background: #0a0a0f;
}

/* =============================================
   ANIMATED BACKGROUND LAYERS
   ============================================= */

.bg-layer {
  position: fixed;
  inset: -20%;
  width: 140%;
  height: 140%;
  border-radius: 40%;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 0;
  animation: bgSpin linear infinite;
  will-change: transform;
}

/* Three gradient orbs that rotate & shift color */
.bg-layer-1 {
  background: radial-gradient(ellipse 60% 55% at 50% 50%,
    var(--orb1-a, #2a2a2a) 0%,
    transparent 70%);
  animation-duration: 18s;
  animation-name: bgSpin;
}
.bg-layer-2 {
  background: radial-gradient(ellipse 50% 45% at 30% 60%,
    var(--orb2-a, #111111) 0%,
    transparent 70%);
  animation-duration: 25s;
  animation-direction: reverse;
}
.bg-layer-3 {
  background: radial-gradient(ellipse 55% 50% at 70% 35%,
    var(--orb3-a, #1e1e1e) 0%,
    transparent 70%);
  animation-duration: 20s;
  animation-name: bgSpin2;
}

@keyframes bgSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes bgSpin2 {
  0%   { transform: rotate(0deg) scale(1.05); }
  33%  { transform: rotate(120deg) scale(0.95); }
  66%  { transform: rotate(240deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1.05); }
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* =============================================
   PARTICLES
   ============================================= */
.particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: particleFly var(--dur, 8s) var(--delay, 0s) linear infinite;
  width: var(--size, 3px);
  height: var(--size, 3px);
}

@keyframes particleFly {
  0%   { transform: translateY(110vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(var(--drift, 30px)); opacity: 0; }
}

/* =============================================
   MAIN CONTAINER
   ============================================= */
.container {
  position: relative;
  z-index: 10;
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* =============================================
   AVATAR
   ============================================= */
.avatar-ring {
  position: relative;
  margin-bottom: 28px;
  animation: floatAvatar 5s ease-in-out infinite;
}

@keyframes floatAvatar {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.avatar-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent) 0deg,
    var(--accent2) 120deg,
    transparent 180deg,
    var(--accent) 360deg
  );
  animation: spinGlow 4s linear infinite;
  filter: blur(8px);
  opacity: 0.7;
}

@keyframes spinGlow {
  to { transform: rotate(360deg); }
}

.avatar-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  background: #111;
  z-index: 2;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.avatar-img:hover {
  transform: scale(1.05);
}

/* fallback letters if no image */
.avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Coolvetica', 'Space Mono', monospace;
  font-size: 52px;
  color: var(--accent);
  letter-spacing: -2px;
}

/* hide fallback if img loaded */
.avatar-img + .avatar-fallback { display: none; }

/* show fallback if img broken */
.avatar-img.broken { display: none; }
.avatar-img.broken + .avatar-fallback { display: flex; }

/* =============================================
   TITLE
   ============================================= */
.site-title {
  font-family: 'Coolvetica', 'Space Mono', monospace;
  font-size: clamp(2.8rem, 10vw, 4rem);
  font-weight: normal;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;

  background: linear-gradient(135deg, var(--text) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation: titleReveal 1s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes titleReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-subtitle {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 44px;
  animation: titleReveal 1s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}

/* =============================================
   LINK CARDS
   ============================================= */
.links-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: titleReveal 1s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

/* Sheen sweep on hover */
.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.link-card:hover::before {
  transform: translateX(100%);
}

/* Glow border on hover */
.link-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.link-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.06);
  border-color: transparent;
}

.link-card:hover::after { opacity: 1; }

.link-card:active {
  transform: translateY(0) scale(0.99);
}

/* stagger enter animation */
.link-card:nth-child(1) { animation: cardIn 0.6s 0.35s both; }
.link-card:nth-child(2) { animation: cardIn 0.6s 0.45s both; }
.link-card:nth-child(3) { animation: cardIn 0.6s 0.55s both; }
.link-card:nth-child(4) { animation: cardIn 0.6s 0.65s both; }
.link-card:nth-child(5) { animation: cardIn 0.6s 0.75s both; }
.link-card:nth-child(6) { animation: cardIn 0.6s 0.85s both; }

@keyframes cardIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.link-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.link-icon svg {
  width: 100%;
  height: 100%;
}

.link-card:hover .link-icon {
  opacity: 1;
}

.link-text {
  flex: 1;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.link-arrow {
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
  color: var(--accent);
}

.link-card:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Featured card (codeX Studio) */
.link-card--featured {
  border-color: rgba(255,255,255,0.15);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(180,180,180,0.04) 100%);
}

.link-card--featured .link-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   MUSIC PLAYER
   ============================================= */
.player {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;

  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(12,12,18,0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 10px 14px 10px 10px;

  width: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);

  animation: playerSlideIn 0.8s 2s cubic-bezier(0.22,1,0.36,1) both;
  transition: width 0.3s ease, box-shadow 0.3s ease;
}

.player:hover {
  box-shadow: 0 12px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255,255,255,0.04);
}

.player-eq {
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 28px;
  border-radius: 12px 12px 0 0;
  pointer-events: none;
}

@keyframes playerSlideIn {
  from { opacity: 0; transform: translateY(20px) translateX(-10px); }
  to   { opacity: 1; transform: translateY(0) translateX(0); }
}

/* Album art */
.player-art-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.player-art {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.player-art:hover {
  transform: scale(1.18);
}

.player-art-spin {
  display: none;
}

@keyframes spinArt {
  to { transform: rotate(360deg); }
}

/* =============================================
   DİL SEÇİCİ
   ============================================= */
.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Space Mono', monospace;
  user-select: none;
}

.lang-current {
  background: rgba(20,20,30,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background 0.3s, border-color 0.3s;
}

.lang-current:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
}

.lang-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background: rgba(12,12,18,0.95);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.lang-dropdown.open {
  display: flex;
}

.lang-option {
  background: transparent;
  border: none;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.lang-option:hover {
  background: rgba(255,255,255,0.08);
}

.lang-option.active {
  background: rgba(255,255,255,0.15);
  color: var(--accent);
}

/* Track info */
.player-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.player-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.player-artist {
  font-size: 0.62rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ctrl-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  opacity: 0.7;
}

.ctrl-btn:hover {
  background: var(--glass);
  opacity: 1;
  transform: scale(1.1);
}

.ctrl-btn:active {
  transform: scale(0.92);
}

.ctrl-btn svg {
  width: 16px;
  height: 16px;
}

.ctrl-btn--play {
  width: 34px;
  height: 34px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  opacity: 1;
}

.ctrl-btn--play svg {
  width: 18px;
  height: 18px;
}

.ctrl-btn--play:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

/* Progress bar */
.player-progress {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 3px;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 10px;
  transition: width 0.5s linear;
}

/* =============================================
   COLOR THEME CYCLING
   CSS custom property targets for JS to animate
   ============================================= */

/* Theme A — deep black */
body.theme-a {
  --orb1-a: #1a1a1a;
  --orb2-a: #0d0d0d;
  --orb3-a: #222222;
  --accent: #ffffff;
  --accent2: #999999;
}

/* Theme B — dark charcoal with light grey accent */
body.theme-b {
  --orb1-a: #2c2c2c;
  --orb2-a: #141414;
  --orb3-a: #1a1a1a;
  --accent: #dddddd;
  --accent2: #666666;
}

/* Theme C — near black, bright white accent */
body.theme-c {
  --orb1-a: #111111;
  --orb2-a: #1c1c1c;
  --orb3-a: #0a0a0a;
  --accent: #f5f5f5;
  --accent2: #bbbbbb;
}

/* Theme D — soft dark, mid-grey accent */
body.theme-d {
  --orb1-a: #242424;
  --orb2-a: #0f0f0f;
  --orb3-a: #1f1f1f;
  --accent: #cccccc;
  --accent2: #777777;
}

/* =============================================
   FAVORITE ARTISTS
   ============================================= */

.artists-section {
  width: 100%;
  margin-top: 44px;
}

.artists-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.artist-card:hover::before {
  transform: translateX(100%);
}

.artist-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 16px rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
}

.artist-card:active {
  transform: translateY(0) scale(0.98);
}

.artist-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #111;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.artist-card:hover .artist-img-wrap {
  transform: scale(1.1);
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* =============================================
   INTRO BIG W
   ============================================= */
.intro-big-w {
  position: absolute;
  z-index: 2;
  font-family: 'Coolvetica', 'Space Mono', monospace;
  font-size: clamp(8rem, 30vw, 20rem);
  opacity: 0.15;
  animation: flashW 0.3s infinite;
  pointer-events: none;
  user-select: none;
}

@keyframes flashW {
  0%   { color: #fff; }
  50%  { color: #000; }
  100% { color: #fff; }
}

/* =============================================
   PATLAMA EFEKTİ (explode)
   ============================================= */
.intro-grid span.exploding {
  animation: explodeOut 0.6s ease-out forwards !important;
}

@keyframes explodeOut {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--ex, 0px), var(--ey, 0px)) scale(0.3); opacity: 0; }
}

/* =============================================
   INTRO OVERLAY (Wrenchiz isteği)
   ============================================= */

#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: flashBg 0.3s infinite;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

@keyframes flashBg {
  0%   { background: #000; }
  50%  { background: #fff; }
  100% { background: #000; }
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 900px;
  padding: 24px;
  box-sizing: border-box;
}

.intro-grid span {
  font-family: 'Coolvetica', 'Space Mono', monospace;
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  text-align: center;
  white-space: nowrap;
  user-select: none;
  animation: flashText 0.3s infinite ;
}

@keyframes flashText {
  0%   { color: #fff; }
  50%  { color: #000; }
  100% { color: #fff; }
}

/* Mobil uyum */
@media (max-width: 600px) {
  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* Intro kapanırken fade-out */
#intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* =============================================
   EKSTRA ARKA PLAN EFEKTLERİ (Wrenchiz isteği)
   ============================================= */

/* 1. Yavaş dönen ekstra dev bulanık orb */
body::before {
  content: '';
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  top: -300px;
  left: -200px;
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 25s ease-in-out infinite alternate;
  filter: blur(50px);
}

@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(80px, 40px) scale(1.2); }
  66%  { transform: translate(-40px, -60px) scale(0.9); }
  100% { transform: translate(30px, 80px) scale(1.1); }
}

/* 2. İnce grid deseni (yavaşça kayar) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* =============================================
   İNTRO SIRASINDA ANA SİTEYİ GİZLE
   ============================================= */

body.intro-active .container,
body.intro-active .player,
body.intro-active .particles,
body.intro-active .bg-layer,
body.intro-active .noise-overlay {
  opacity: 0 !important;
  animation: none !important;
  transition: none !important;
}

body.intro-active .container *,
body.intro-active .player * {
  animation: none !important;
  transition: none !important;
}

/* stagger */
.artist-card:nth-child(1) { animation: cardIn 0.6s 0.9s both; }
.artist-card:nth-child(2) { animation: cardIn 0.6s 1.0s both; }
.artist-card:nth-child(3) { animation: cardIn 0.6s 1.1s both; }
.artist-card:nth-child(4) { animation: cardIn 0.6s 1.2s both; }
.artist-card:nth-child(5) { animation: cardIn 0.6s 1.3s both; }
.artist-card:nth-child(6) { animation: cardIn 0.6s 1.4s both; }
.artist-card:nth-child(7) { animation: cardIn 0.6s 1.5s both; }
.artist-card:nth-child(8) { animation: cardIn 0.6s 1.6s both; }
.artist-card:nth-child(9) { animation: cardIn 0.6s 1.7s both; }
.artist-card:nth-child(10) { animation: cardIn 0.6s 1.8s both; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 10px; }



/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 480px) {
  .player {
    width: calc(100vw - 40px);
    bottom: 16px;
    left: 20px;
  }

  .container {
    padding: 48px 20px 110px;
  }
}