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

:root {
  --bg-dark: #08050A;
  --bg-card: rgba(255, 255, 255, 0.05);
  --primary: #FFB7C5; /* Sakura Pink */
  --primary-glow: rgba(255, 183, 197, 0.3);
  --secondary: #FF2E9B; /* Neon Magenta */
  --secondary-glow: rgba(255, 46, 155, 0.4);
  --accent: #A5D8FF; /* Pastel Blue */
  --text-main: #FFFFFF;
  --text-muted: #FFD1DC;
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

/* Background Sparkle Effect */
.bg-sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #08050a 100%);
}

#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* Above sparkles, below everything else */
}

.bg-sparkles::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  animation: float-stars 60s linear infinite;
}

@keyframes float-stars {
  from { transform: translateY(0); }
  to { transform: translateY(-1000px); }
}

/* Utility Classes */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--secondary-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(8, 5, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  image-rendering: pixelated;
}

.logo-mark--footer {
  height: 52px;
  max-width: 180px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(50, 255, 126, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  color: #32ff7e;
  font-size: 0.85rem;
  font-weight: 600;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #32ff7e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(50, 255, 126, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(50, 255, 126, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(50, 255, 126, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(50, 255, 126, 0); }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(15px); /* Aesthetic atmospheric blur */
  transform: scale(1.1); /* Hide blurred edges */
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Radial gradient for deep immersion and readability */
  background: radial-gradient(circle at center, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.8) 60%, var(--bg-dark) 100%);
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(to right, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ip-copy {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: 12px;
  margin-top: 30px;
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
}

.ip-copy:hover {
  border-color: var(--primary);
  background: rgba(255, 183, 197, 0.05);
}

.ip-copy code {
  color: var(--primary);
  font-weight: 600;
  margin-right: 15px;
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
  height: 450px; /* Consistent height for slider */
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Features Section */
.features {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 183, 197, 0.08);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 46, 155, 0.2);
}

.feature-card h3 {
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Community & Store Feed */
.community {
  padding: 100px 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 183, 197, 0.03));
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.community-col {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 183, 197, 0.05);
  border-color: var(--glass-border);
  transform: translateX(5px);
}

.stat-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-dark);
}

.rank {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--text-muted);
  width: 25px;
  font-size: 0.9rem;
}

.player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.player-info .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.player-info .sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.rank-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2px;
  width: fit-content;
}

.rank-svip { background: #50fa7b; color: #000; }
.rank-svip-plus { background: #ffb86c; color: #000; }
.rank-svip-double-plus { background: #ff79c6; color: #000; }

/* Staff Section */
.staff {
  padding: 100px 0 120px;
  background: linear-gradient(to bottom, transparent, rgba(255, 183, 197, 0.04));
  border-top: 1px solid var(--glass-border);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.staff-card {
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.staff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.staff-card:hover {
  transform: translateY(-10px);
}

.staff-avatar {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.staff-avatar img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  image-rendering: pixelated;
}

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

.staff-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.staff-role {
  display: inline-block;
  font-size: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.staff-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.staff-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.staff-socials a {
  color: var(--text-muted);
  transition: var(--transition);
}

.staff-socials a:hover {
  color: var(--text-main);
  transform: translateY(-2px);
}

/* Role Specific Glows & Colors */
.role-owner { background: rgba(255, 85, 85, 0.2); color: #ff5555; border: 1px solid rgba(255, 85, 85, 0.3); }
.owner-glow:hover { box-shadow: 0 15px 35px rgba(255, 85, 85, 0.15); border-color: rgba(255, 85, 85, 0.3); }
.owner-glow::before { background: #ff5555; }

.role-map-designer { background: rgba(255, 184, 108, 0.2); color: #ffb86c; border: 1px solid rgba(255, 184, 108, 0.35); }
.map-glow:hover { box-shadow: 0 15px 35px rgba(255, 184, 108, 0.12); border-color: rgba(255, 184, 108, 0.35); }
.map-glow::before { background: #ffb86c; }

.role-mod-developer { background: rgba(139, 233, 253, 0.2); color: #8be9fd; border: 1px solid rgba(139, 233, 253, 0.3); }
.moddev-glow:hover { box-shadow: 0 15px 35px rgba(139, 233, 253, 0.15); border-color: rgba(139, 233, 253, 0.3); }
.moddev-glow::before { background: #8be9fd; }

.role-mod { background: rgba(80, 250, 123, 0.2); color: #50fa7b; border: 1px solid rgba(80, 250, 123, 0.3); }
.mod-glow:hover { box-shadow: 0 15px 35px rgba(80, 250, 123, 0.15); border-color: rgba(80, 250, 123, 0.3); }
.mod-glow::before { background: #50fa7b; }

.role-helper { background: rgba(165, 216, 255, 0.2); color: var(--accent); border: 1px solid rgba(165, 216, 255, 0.35); }
.helper-glow:hover { box-shadow: 0 15px 35px rgba(165, 216, 255, 0.12); border-color: rgba(165, 216, 255, 0.35); }
.helper-glow::before { background: var(--accent); }

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: rgba(255, 183, 197, 0.02);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Rules Section */
.rules {
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(255, 183, 197, 0.02), transparent);
  border-top: 1px solid var(--glass-border);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.rules-card {
  padding: 28px 26px;
  text-align: left;
  transition: var(--transition);
}

.rules-card:hover {
  border-color: rgba(255, 183, 197, 0.25);
  background: rgba(255, 183, 197, 0.04);
}

.rules-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.rules-card-head i {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.rules-card-head h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--text-main);
}

.rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rules-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.rules-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.rules-footnote {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.chevron {
  transition: var(--transition);
}

/* Support Section */
.support {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

.support-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 36px 36px;
}

.support .section-title p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.support-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.input-wrapper-textarea {
  align-items: flex-start;
}

.input-wrapper-textarea i {
  top: 17px;
}

.input-wrapper textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  padding: 15px 15px 15px 45px;
  border-radius: 12px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
}

.input-wrapper textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 183, 197, 0.2);
  background: rgba(255, 183, 197, 0.05);
}

/* Footer */
footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.copyright {
  color: #555;
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: 90%;
  max-width: 600px;
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition);
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-content a {
  color: var(--primary);
  text-decoration: none;
}

/* Auth Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-card {
  width: 100%;
  max-width: 450px;
  padding: 40px;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition);
}

.modal-overlay.active .auth-card {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary);
}

/* Tabs */
.auth-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
  position: relative;
  border-bottom: 1px solid var(--glass-border);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 15px 0;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  width: 50%;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
}

.tab-btn.active {
  color: var(--primary);
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: var(--transition);
}

/* Forms */
.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  color: var(--text-muted);
  width: 18px;
}

.input-wrapper input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  padding: 15px 15px 15px 45px;
  border-radius: 12px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.input-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 183, 197, 0.2);
  background: rgba(255, 183, 197, 0.05);
}

/* Form Footer */
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.forgot-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.forgot-link:hover {
  color: var(--primary);
}

/* Custom Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-muted);
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}

.checkbox-container input:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-container input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.auth-submit {
  width: 100%;
  padding: 15px;
  font-weight: 800;
  font-size: 1rem;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    margin: 0 auto 40px;
  }
  .hero-actions, .ip-copy {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .nav-links {
    display: none;
  }
}
