:root {
  /* Playful Kids Palette */
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #e9f7ef;
  --red: #ff4757;
  --red-light: #ff6b81;
  --blue: #54a0ff;
  --blue-light: #eef5ff;
  --yellow: #feca57;
  --purple: #a55eea;
  --text: #2f3542;
  --text-muted: #57606f;
  --white: #ffffff;
  --bg-playful: #f0f4f8;
  --radius-lg: 40px;
  --radius-md: 20px;
  --shadow-playful: 0 15px 35px rgba(47, 53, 66, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', 'Hind Siliguri', sans-serif;
  background-color: var(--bg-playful);
  /* Playful Background Pattern: Subtle dots */
  background-image: radial-gradient(#d1d8e0 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  color: var(--text);
  line-height: 1.6;
}

/* ── HERO HEADER ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 450px;
  background: linear-gradient(135deg, #54a0ff 0%, #00d2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  box-shadow: 0 20px 50px rgba(84, 160, 255, 0.2);
}

.hero::before {
  content: '🎨';
  position: absolute;
  top: 15%;
  left: 10%;
  font-size: 5rem;
  opacity: 0.15;
  transform: rotate(-20deg);
  animation: float 4s ease-in-out infinite;
}

.hero::after {
  content: '🚀';
  position: absolute;
  bottom: 25%;
  right: 12%;
  font-size: 5rem;
  opacity: 0.15;
  transform: rotate(20deg);
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-20deg); }
  50%       { transform: translateY(-20px) rotate(-15deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 3rem 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 1px;
}

.hero-date {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  display: inline-block;
  margin-top: 2rem;
  backdrop-filter: blur(8px);
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.hero-date {
  margin-top: 1rem;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-family: 'Amiri', serif;
  font-size: 1.9rem;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PRICING INFO ─────────────────────────────────────────── */
.pricing-info {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.price-tier {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  box-shadow: var(--shadow);
}

.price-tier.free {
  border-color: var(--gold);
}

.price-tier-icon  { font-size: 1.8rem; }
.price-tier-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.price-tier-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
}
.price-tier.free .price-tier-amount { color: var(--gold); }

/* ── REGISTRATION FORM ────────────────────────────────────── */
.register-section { background: #f4f6f4; }

.reg-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.req { color: #e53e3e; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fafafa;
}

.form-group input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,74,0.12);
  background: var(--white);
}

.form-group input.error {
  border-color: #e53e3e;
}

.form-group small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.3rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group.half { flex: 1; }

/* Ticket Cards */
.ticket-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ticket-card {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
}

.ticket-card input[type="radio"] {
  display: none;
}

.ticket-inner {
  border: 2px solid #d1d5db;
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
  transition: all var(--transition);
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.ticket-card input:checked ~ .ticket-inner,
.ticket-inner:hover {
  border-color: var(--green);
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(26,122,74,0.12);
}

.ticket-icon  { font-size: 1.8rem; }
.ticket-label { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.ticket-price { font-weight: 700; font-size: 1.2rem; color: var(--green); }

/* Amount Box */
.amount-box {
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.amount-box strong {
  font-size: 1.4rem;
  color: var(--red);
}

.form-note {
  background: #e0f0e9;
  border-left: 4px solid var(--green);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  color: var(--green-dark);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,122,74,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,122,74,0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-secondary:hover {
  background: var(--green-light);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a07c15);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.45);
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-section {
  background: linear-gradient(180deg, #fff 0%, var(--green-light) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--green);
  transition: transform var(--transition);
}

.step:hover { transform: translateY(-4px); }

.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 0.75rem;
}

.step h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.4rem; }
.step p  { font-size: 0.85rem; color: var(--text-muted); }

/* ── HERO LOGIN BUTTONS ───────────────────────────────────── */
.btn-hero-login:hover {
  background: rgba(255,255,255,0.3) !important;
  border-color: rgba(255,255,255,0.8) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ── ADMIN NAV TABS ───────────────────────────────────────── */
.btn-danger {
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 2rem 1rem 1.2rem 1rem;
  font-size: 0.95rem;
  border-top: 4px solid var(--gold);
}

.footer-org {
  font-family: 'Amiri', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.footer-social {
  margin: 0.5rem 0;
}
.footer-social a {
  display: inline-block;
  margin: 0 0.2rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-social a:hover {
  opacity: 1;
}
.footer a { color: var(--gold); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ── TOAST NOTIFICATION ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 340px;
}

.toast.show    { transform: translateX(0); }
.toast.success { background: var(--green); }
.toast.error   { background: #e53e3e; }
.toast.info    { background: #3182ce; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.92);
  transition: transform 0.25s;
  text-align: center;
}

.modal-overlay.active .modal { transform: scale(1); }

.modal h2 {
  font-family: 'Amiri', serif;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.modal p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ── SPINNER ──────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

/* ── CONFIRMATION PAGE ────────────────────────────────────── */
.confirm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--green);
}

.confirm-icon { font-size: 4rem; margin-bottom: 1rem; }

.confirm-card h2 {
  font-family: 'Amiri', serif;
  color: var(--green-dark);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.confirm-card .sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.entry-code {
  display: inline-block;
  background: var(--green-light);
  border: 2px dashed var(--green);
  border-radius: 8px;
  padding: 0.6rem 1.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 4px;
  margin: 1rem 0;
  font-family: monospace;
}

#qrCodeContainer canvas,
#qrCodeContainer img {
  margin: 1rem auto;
  display: block;
  border: 4px solid var(--green-light);
  border-radius: 8px;
  padding: 8px;
  background: white;
}

.confirm-details {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: left;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.confirm-details p { margin-bottom: 0.4rem; }
.confirm-details strong { color: var(--green-dark); }

/* ── ADMIN PAGE ───────────────────────────────────────────── */
.admin-header {
  background: var(--green-dark);
  padding: 1.5rem 1.25rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-header h1 { font-family: 'Amiri', serif; font-size: 1.4rem; }

.admin-section { background: #f4f6f4; min-height: 100vh; }

.scanner-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  text-align: center;
}

.scanner-box h3 {
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

#reader {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.manual-check {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.manual-check input {
  flex: 1;
  min-width: 180px;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.manual-check input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,74,0.12);
}

.check-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  display: none;
}

.check-result.valid   { background: #d4edda; color: #155724; display: block; }
.check-result.invalid { background: #f8d7da; color: #721c24; display: block; }
.check-result.used    { background: #fff3cd; color: #856404; display: block; }

.registrations-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.registrations-table-wrap h3 {
  color: var(--green-dark);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

th, td {
  text-align: left;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid #e5e7eb;
}

th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  white-space: nowrap;
}

tr:hover td { background: #f9fafb; }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-green  { background: #d4edda; color: #155724; }
.badge-yellow { background: #fff3cd; color: #856404; }
.badge-blue   { background: #cce5ff; color: #004085; }
.badge-red    { background: #f8d7da; color: #721c24; }

/* ── LOGIN PAGE ───────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a3a22, #1a7a4a);
  padding: 1rem;
}

.login-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  text-align: center;
}

.login-card .crescent-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

.login-card h2 {
  font-family: 'Amiri', serif;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.login-card .form-group { text-align: left; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
}

.stat-card .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  display: block;
}

.stat-card .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .form-row { flex-direction: column; }
  .reg-form { padding: 1.5rem 1rem; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-date { font-size: 0.8rem; }
  .manual-check { flex-direction: column; }
  .admin-header { flex-direction: column; text-align: center; }
}

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  .hero, .how-section, .footer, .btn { display: none !important; }
  .confirm-card { box-shadow: none; border: 2px solid #ccc; }
}

/* Photo Upload Styles */
.photo-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
}

.photo-preview {
  margin-top: 0.5rem;
  border: 2px solid #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.photo-preview:hover {
  transform: scale(1.05);
}

.spinner {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 0.5rem;
}

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


/* ── LOGIN BOX SECTION ───────────────────────────────────── */
.login-box-section {
  padding-top: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

.login-card-box {
  width: 100%;
  max-width: 1100px;
  background: white;
  padding: 3.5rem 2.5rem 4rem;
  border-radius: 40px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  z-index: 10;
}

.login-box-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
  opacity: 0.7;
}

.login-box-header {
  font-family: 'Hind Siliguri', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2.5rem;
}

.login-btn-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* ── GAMING 3D BUTTONS ───────────────────────────────────── */
.btn-gaming {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: 60px;
  text-decoration: none;
  border: 5px solid #000;
  box-shadow: 0 10px 0 #000;
  transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  color: white !important;
  text-align: center;
  overflow: hidden;
}

.btn-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: white;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15), inset 0 0 15px rgba(0,0,0,0.05);
  border: 4px solid rgba(255,255,255,0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gaming:hover .btn-logo {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2), inset 0 0 20px rgba(0,0,0,0.08);
  border-color: white;
}

.btn-txt {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-top: 2px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Gradients matching the image */
.btn-gaming.student {
  background: linear-gradient(180deg, #ff5f6d 0%, #ffc371 100%); /* Warm Pink/Orange */
}

.btn-gaming.teacher {
  background: linear-gradient(180deg, #2193b0 0%, #6dd5ed 100%); /* Cyan/Sky Blue */
}

.btn-gaming.admin {
  background: linear-gradient(180deg, #7b4397 0%, #dc2430 100%); /* Purple/Red */
}

.btn-gaming.registration {
  background: linear-gradient(180deg, #11998e 0%, #38ef7d 100%); /* Greenish */
}

/* Hover & Active states */
.btn-gaming:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 0 #000;
}

.btn-gaming:active {
  transform: translateY(8px);
  box-shadow: 0 2px 0 #000;
}

@media (max-width: 860px) {
  .login-btn-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .login-btn-group {
    grid-template-columns: 1fr;
  }
  .login-card-box { padding: 2.5rem 1.5rem 3rem; }
  .login-box-header { font-size: 1.4rem; }
}

.dev-pill {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 0.8rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.dev-pill:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.dev-logo-small {
  height: 60px;
  width: auto;
}
