@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap');

:root {
  --accent:      #FF00C7;
  --bg:          #181818;
  --bg-darker:   #151515;
  --text:        #cccccc;
  --text-white:  #ffffff;
  --border:      #333333;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper {
  width: 100%;
  max-width: 500px;
  padding: 60px 20px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

/* Matching the exact logo style from WebDew */
.brand {
  margin: 0 0 12px 0; 
  font-size: 2.8em; 
  font-weight: 800; 
  color: var(--text-white);
  letter-spacing: -1px; 
  text-transform: none; 
  line-height: 1;
}
.brand span { 
  color: var(--accent); 
}

.tagline {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 30px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--accent);
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-main:hover {
  opacity: 0.85;
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 10px 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.link-card {
  display: flex;
  align-items: center;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.link-card:hover {
  border-color: var(--accent);
  color: var(--text-white);
}

.link-card .text {
  flex-grow: 1;
}

.link-card .arrow {
  color: var(--text);
  opacity: 0.5;
}

.link-card:hover .arrow {
  color: var(--accent);
  opacity: 1;
}

.info-section {
  text-align: center;
  margin-bottom: 30px;
}

.info-section p {
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.url-box {
  display: inline-block;
  padding: 10px 16px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-white);
  font-family: monospace;
  font-size: 0.9rem;
}

.seo-tags {
  font-size: 0.6rem;
  color: #333333;
  text-align: center;
  margin: 0 auto 20px auto;
  line-height: 1.4;
  word-wrap: break-word;
}

footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 0.75rem;
  color: var(--border);
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

/* ── Custom Scrollbar (Desktop Only) ── */
@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #111;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
    border: 2px solid #111;
  }
  ::-webkit-scrollbar-thumb:hover {
    filter: brightness(1.2);
  }
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #111;
  }
}

/* ── Hide Scrollbar (Mobile) ── */
@media only screen and (max-width: 767.98px) {
  ::-webkit-scrollbar {
    display: none;
    width: 0 !important;
  }
  body, html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
