* {box-sizing: border-box; margin: 0; padding: 0; }
:root {
  background: #0E1223;
  background: linear-gradient(180deg, rgba(14, 18, 35, 1) 0%, rgba(30, 30, 59, 1) 50%);
  /*--bg-color: #535353;
  --background-color: var(--bg-color);
  --color-bg-light: var(--bg-color); */
  --text-color: #e0e0e0;
  --color-text-light: var(--text-color);
  --color-primary: #151b36;
  --color-secondary: #3d465f;
  --code-bg: #1e1e1e;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-code: 'Fira Code', 'Courier New', monospace;
  --spacing: 20px;
}

a {
  color: var(--text-color);
}
a:active {
  color: var(--text-color);
}

body { font-size: 1.5rem; font-family: var(--font-main); color: var(--color-text-light); line-height: 1.6; transition: background-color var(--transition-speed), color var(--transition-speed); }

/* Copied from one of my other sites */
.header-section { background-color: var(--color-primary); padding: 1rem 1.5rem; position: relative; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.header-section__nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.header-section__logo { color: white; font-weight: 700; font-size: 1.5rem; text-decoration: none; user-select: none;}
.header-section__tagline { display: block; font-size: 0.8rem; font-weight: 400; color: rgba(255, 255, 255, 0.7); margin-top: 0.2rem; font-style: italic; transition: color 0.3s ease; }
.header-section__logo:hover .header-section__tagline { color: var(--color-accent); }
.header-section__toggle { display: none; font-size: 1.5rem; background: none; border: none; color: white; cursor: pointer; }
.header-section__links { display: flex; gap: 1rem;}
.header-section__btn { color: white; text-decoration: none; font-weight: 600; padding: 0.5rem 1rem; border-radius: 8px; transition: background-color 0.3s ease, transform 0.2s ease; }
.header-section__btn:hover { background-color: var(--color-primary-hover); transform: translateY(-2px); }
@media (max-width: 768px) {
  .header-section__toggle { display: block; }
  .header-section__links { flex-direction: column;width: 100%; display: none; margin-top: 1rem; }
  .header-section__links.active { display: flex; }
  .header-section__btn { padding: 0.75rem; text-align: center; }
}
nav { display: flex; align-items: center; justify-content: space-between; }
.nav-links { list-style: none; display: flex;gap: 1.5rem; }
.nav-links a { color: white; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--color-accent);}

.hero-rupnil {
  padding: 6rem 1rem 15rem;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('rupnil.codes.png') no-repeat center center;
  background-size: cover;
}
.hero { padding: 6rem 1rem 4rem; text-align: center; }
.hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: 1.1px; }
.hero p { font-size: 1.25rem; margin-bottom: 2rem; color: var(--color-primary-hover); }

.btn { background-color: var(--color-primary); color: white; padding: 0.85rem 2.5rem; font-weight: 700; font-size: 1rem; border-radius: 30px; cursor: pointer; user-select: none; text-decoration: none; display: inline-block; box-shadow: 0 6px 8px rgba(123, 92, 255, 0.4); }
.section { padding: 3rem 1rem; text-align: center; }
.section h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1.1px; }
.section p { max-width: 600px; margin: 0 auto; color: var(--color-primary-hover); font-weight: 500; font-size: 1.1rem; }
.section-left { padding: 3rem 1rem; text-align: left; }
.section-left h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1.1px; }
.section-left p { max-width: 1000px; margin: 0 auto; color: var(--color-primary-hover); font-weight: 500; font-size: 1.1rem; }
.section-right { padding: 3rem 1rem; text-align: right; }
.section-right h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1.1px; } 
.section-right p { max-width: 1000px; margin: 0 auto; color: var(--color-primary-hover); font-weight: 500; font-size: 1.1rem; }
@media (max-width: 720px) {
  .nav-links { display: none; }
  nav { justify-content: space-between; }
  .cards { flex-direction: column; align-items: center; }
}
input[type="email"], input[type="password"], input[type="text"] { width: 320px; padding: 12px 16px; margin: 8px 0; border: none; border-radius: 8px; background: #222; color: #eee; font-size: 1rem; transition: box-shadow 0.3s ease; }
input[type="email"]:focus, input[type="password"]:focus, input[type="text"]:focus { outline: none; box-shadow: 0 0 8px #3b82f6; background: #1a1a1a; }
button { width: 140px; padding: 12px 0; margin: 12px 8px 0 8px; background: #aa19bd; border: none; border-radius: 10px; color: white; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background-color 0.25s ease; box-shadow: 0 4px 6px rgba(59, 130, 246, 0.5); }
button:hover { background: #2563eb; box-shadow: 0 6px 10px rgba(37, 99, 235, 0.7); }
button:active { background: #1d4ed8; /* even darker on click */ box-shadow: 0 2px 4px rgba(29, 78, 216, 0.9); }
button:disabled { background: #555; cursor: not-allowed; box-shadow: none; }
ul { list-style: none;  padding-left: 0; margin-top: 1rem; margin-bottom: 1rem; }
li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; line-height: 1;}
li:before {
  content: "> ";
  padding-right: 5px;
}

@media (max-width: 768px) {
  .header-section__toggle { display: block; }
  .header-section__links { flex-direction: column;width: 100%; display: none; margin-top: 1rem; }
  .header-section__links.active { display: flex; }
  .header-section__btn { padding: 0.75rem; text-align: center; }
}

.section { padding: 3rem 1rem; text-align: center; font-size: 1.5rem; }
.section h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1.1px; }
.section p { max-width: 600px; margin: 0 auto; color: var(--color-primary-hover); font-weight: 500; font-size: 1.1rem; }
.section-left { padding: 3rem 1rem; text-align: left; }
.section-left h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1.1px; }
.section-left p { max-width: 1000px; margin: 0 auto; color: var(--color-primary-hover); font-weight: 500; font-size: 1.1rem; }
.section-right { padding: 3rem 1rem; text-align: right; }
.section-right h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1.1px; } 
.section-right p { max-width: 1000px; margin: 0 auto; color: var(--color-primary-hover); font-weight: 500; font-size: 1.1rem; }
.cards { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.card { background: #222; box-shadow: 0 4px 12px rgba(0,0,0,0.5); border-radius: 12px; padding: 1.8rem; width: 280px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: default; }
.card:hover { transform: translateY(-8px); box-shadow: 0 14px 30px rgba(0,0,0,0.3); }
.card h3 { margin-bottom: 0.8rem; color: var(--color-primary); }
.card p { font-weight: 400; color: var(--color-text-light); }
footer { background: #111; color: #bbb; text-align: center; padding: 1.5rem 1rem; font-size: 0.9rem; user-select: none; }
.footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 960px; margin: 0 auto; flex-wrap: wrap; gap: 1rem; }
.social-links a { color: #bbb; font-size: 1.6rem; margin: 0 0.5rem; transition: color 0.3s ease; user-select: none; text-decoration: none; }
.social-links a:hover { color: var(--color-accent); }

.auth-container { max-width: 420px; margin: 3rem auto; padding: 2rem; background: rgba(255,255,255,0.02); border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.6); text-align: left; }
.auth-form label { display: block; font-weight: 600; margin-top: 10px; margin-bottom: 6px; }
.auth-form input { width: 100%; max-width: 100%; }
.error { color: #ffb4b4; margin-top: 0.5rem; }

.header-section__account { display:flex; align-items:center; gap:0.5rem; margin-left: 0.5rem; }
.header-account-btn { padding: 8px 10px; border-radius: 999px; background: #2c2f45; display:flex; align-items:center; justify-content:center; }
.header-account-icon { font-size: 1.05rem; }
.header-signout { background: transparent; border: none; padding: 8px 10px; cursor: pointer; }
.header-section__btn.header-signin { margin-left: 0.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }