body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #4b2e19 0%, #444444 100%);
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

html, body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden !important;
  overscroll-behavior: none !important;
  touch-action: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
}

#coffee-beans-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  z-index: 9999; /* En önde */
  pointer-events: none;
  display: block;
}

.bg-blob {
  position: fixed;
  top: -120px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 60% 40%, #4b2e19cc 0%, #44444400 100%);
  z-index: 1;
  filter: blur(48px) opacity(0.32);
  animation: blobMove 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes blobMove {
  0% { transform: scale(1) translate(0,0);}
  100% { transform: scale(1.15) translate(60px, 40px);}
}

.main-card {
  z-index: 3;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 0 0 0;
  box-sizing: border-box;
  overflow-y: auto;
  background: rgba(68, 68, 68, 0.92);
}

.logo-frame {
  margin-top: 0;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4b2e19 60%, #444444 100%);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 18px auto;
  box-shadow: 0 4px 32px #4b2e1933, 0 1px 8px #44444488;
  transition: box-shadow 0.2s;
  position: relative;
}

.logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  background: #444444;
  box-shadow: 0 2px 16px #0006;
  display: block;
}

.brand-title {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin: 0 0 10px 0;
  background: linear-gradient(90deg, #b87333 30%, #4b2e19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  width: 100vw;
  min-width: 0;
  max-width: 100vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.brand-title-link {
  text-decoration: none;
}

.brand-title-link:visited,
.brand-title-link:active,
.brand-title-link:focus,
.brand-title-link:hover {
  text-decoration: none;
}

.logo-link {
  text-decoration: none;
}

.logo-link:visited,
.logo-link:active,
.logo-link:focus,
.logo-link:hover {
  text-decoration: none;
}

.owner-label {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.owner-box {
  font-size: 1.51rem;
  color: #bfa16b;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  gap: 2px;
}

.owner-name {
  color: #b87333;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.7px;
  text-shadow: 0 2px 8px #4b2e1933;
  text-transform: capitalize;
}

.links-list {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}

.modern-link {
  position: relative;
  z-index: 3;
  width: 96%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(90deg, #4b2e19 70%, #444444 100%);
  color: #ffe6b7;
  text-decoration: none;
  padding: 18px 20px 18px 0;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.09rem;
  box-shadow: 0 2px 12px #4b2e1933, 0 1.5px 8px #44444488;
  transition: transform 0.13s, box-shadow 0.13s, background 0.18s, color 0.18s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.modern-link:hover, .modern-link:focus {
  background: linear-gradient(90deg, #b87333 60%, #4b2e19 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px #4b2e19cc;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  margin-right: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4b2e19 60%, #444444 100%);
  box-shadow: 0 2px 8px #4b2e1933, 0 1px 4px #44444488;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  flex-shrink: 0;
  position: relative;
  animation: iconPop 1.2s cubic-bezier(.4,2,.6,1) both;
}

@keyframes iconPop {
  0% { transform: scale(0.7) rotate(-8deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(4deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.modern-link:hover .icon-link,
.modern-link:focus .icon-link {
  background: linear-gradient(135deg, #b87333 60%, #4b2e19 100%);
  box-shadow: 0 4px 16px #b87333cc, 0 2px 8px #4b2e19cc;
  transform: scale(1.13) rotate(-8deg);
}

.icon-link svg {
  width: 28px;
  height: 28px;
  fill: #b87333;
  display: block;
  transition: fill 0.18s;
}

.modern-link:hover .icon-link svg,
.modern-link:focus .icon-link svg {
  fill: #ffe6b7;
}

.link-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 56px;
  justify-content: center;
  font-size: 1.09rem;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.link-title {
  font-size: 1.09rem;
  font-weight: 700;
  color: #ffe6b7;
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}

.link-desc {
  font-size: 0.99rem;
  color: #bfa16b;
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.1px;
  line-height: 1.3;
}

@media (max-width: 600px) {
  body {
    background: linear-gradient(135deg, #4b2e19 0%, #444444 100%);
    overscroll-behavior: none !important;
    touch-action: none !important;
    overflow: hidden !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
  }
  .bg-blob {
    top: -180px;
    left: -180px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 60% 40%, #4b2e1988 0%, #44444400 100%);
    filter: blur(38px) opacity(0.22);
  }
  .main-card {
    padding: 18px 0 0 0;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background: rgba(68, 68, 68, 0.97);
  }
  .logo-frame {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
  }
  .logo {
    width: 90px;
    height: 90px;
  }
  .links-list {
    max-width: 99vw;
    width: 100vw;
  }
  .modern-link {
    width: 96vw;
    min-width: 0;
    max-width: 99vw;
    margin: 0 auto;
  }
  .brand-title {
    font-size: 1.5rem;
    white-space: nowrap;
    text-align: center;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  .owner-name {
    font-size: 1.7rem;
  }
}
