* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  position: relative;
}

/* Snow Canvas */
#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  position: relative;
}

main {
  position: relative;
  z-index: 10;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease;
  display: block;
}

.header-logo:hover img {
  transform: scale(1.05);
}

.header-nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.btn-header.btn-white,
.btn-discord {
  background: #ffffff;
  color: #1a1a1a;
}

.btn-header.btn-white:hover,
.btn-discord:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.btn-header.btn-white.active {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn-discord {
  display: inline-flex;
  gap: 10px;
}

.btn-discord-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(20px, 3vw, 28px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-weight: 600;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #ffffff;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Page Hero */
.page-hero {
  padding: 100px 20px 60px;
  text-align: center;
}

.page-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* Plans Section (Select Plan) */
.plans-section {
  padding: 40px 20px 100px;
}

.plans-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.plans-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  max-width: 560px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.plan-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.plan-card.plan-featured {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.plan-tag {
  display: inline-block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
}

.plan-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.plan-card.plan-featured .plan-title {
  margin-top: 8px;
}

.plan-price {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.plan-period {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
  flex: 1;
}

.plan-features li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
}

.plan-btn {
  margin-top: auto;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.plan-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.plan-btn-featured {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.plan-btn-featured:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.plans-help {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.plans-help a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.plans-help a:hover {
  color: #ffffff;
}

/* Services Section */
.services-section {
  padding: 60px 0 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card-large {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card-large:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.service-card-large h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-price {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-weight: 600;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✓';
  margin-right: 10px;
  color: #ffffff;
  font-weight: 700;
}

/* Proof Section */
.proof-section {
  padding: 60px 0 100px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.proof-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.proof-badge.success {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.proof-content {
  margin-top: 20px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proof-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-value {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
}

.proof-gallery {
  margin-top: 60px;
}

/* Proof Hero (Verified / Real Proof / PROVEN RESULTS) */
.proof-hero {
  padding: 100px 20px 60px;
  text-align: center;
}

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.proof-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.proof-badge-tag:hover {
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.proof-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.proof-badge-star {
  color: #ffffff;
  font-size: 16px;
}

.proof-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.proof-title-white {
  color: #ffffff;
}

.proof-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

.proof-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  padding: 24px;
}

.proof-hint code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.proof-instructions {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.proof-instructions code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Proof Media Sections */
.proof-media-section {
  margin-bottom: 80px;
}

.proof-media-section:last-child {
  margin-bottom: 0;
}

.proof-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.proof-media-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.proof-media-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.proof-media-item video,
.proof-media-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.proof-media-item video {
  background: #000;
}

.media-title {
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
  margin: 0;
  font-weight: 600;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.gallery-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.gallery-placeholder span {
  font-size: 48px;
  margin-bottom: 15px;
}

.gallery-placeholder p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Reviews Section */
.reviews-section {
  padding: 60px 0 100px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.review-stars {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 15px;
}

.review-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0 100px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.faq-toggle {
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 700;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}

/* Auth (Login / Register) – dark card, logo, everything white */
.auth-main {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 100px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-logo {
  text-align: center;
  margin-bottom: 36px;
}

.auth-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-field {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #282828;
  border-radius: 14px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease;
}

.auth-field:focus-within {
  border-color: rgba(255, 255, 255, 0.25);
}

.auth-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.auth-icon svg {
  width: 20px;
  height: 20px;
}

.auth-field input {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 15px;
  color: #ffffff;
  outline: none;
}

.auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.auth-toggle-pw {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-toggle-pw svg {
  width: 20px;
  height: 20px;
}

.auth-toggle-pw .eye-off {
  display: none;
}

.auth-toggle-pw .eye-off[hidden] {
  display: none;
}

.auth-toggle-pw .eye-on[hidden] {
  display: none;
}

.auth-toggle-pw .eye-off:not([hidden]) {
  display: block;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #ffffff;
}

.auth-links-register {
  justify-content: center;
}

.auth-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.auth-link:hover {
  opacity: 0.85;
}

.auth-link-right {
  margin-left: auto;
}

.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  background: #ffffff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 8px;
}

.auth-submit:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.01);
}

.auth-submit svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 480px) {
  .auth-main {
    padding: 40px 16px 60px;
  }
  .auth-card {
    padding: 36px 24px;
    border-radius: 20px;
  }
  .auth-logo img {
    height: 48px;
  }
}

/* Music Player – bottom-left, play + skips only, no circles */
.music-player {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  padding: 0;
}

.music-btn,
.music-skip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 0;
  transition: opacity 0.2s ease;
  text-decoration: none;
  color: #ffffff;
}

.music-btn:hover,
.music-skip-btn:hover {
  opacity: 0.8;
}

.music-btn.playing {
  background: none;
}

.music-skip-btn {
  width: 48px;
  height: 48px;
}

.music-player .music-icon,
.music-player .music-skip-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: #ffffff;
  color: #ffffff;
}

.music-player .music-skip-icon {
  width: 22px;
  height: 22px;
}

/* Upload Section */
.upload-section {
  padding: 60px 0 100px;
}

.upload-container {
  max-width: 900px;
  margin: 0 auto;
}

.drop-zone {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
}

.drop-zone:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.drop-zone.drag-over {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.02);
}

.drop-zone-content {
  pointer-events: none;
}

.drop-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.drop-zone h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.drop-zone p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 5px 0;
}

.drop-hint {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 15px;
}

.instructions {
  margin-bottom: 40px;
}

.instruction-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.instruction-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.instruction-box ol {
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
}

.instruction-box code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  color: #ffffff;
}

.file-list-container {
  margin-top: 40px;
}

.file-list-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.file-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.file-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.file-preview {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.file-preview img,
.file-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-icon {
  font-size: 40px;
}

.file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
}

.file-size,
.file-type {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.file-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-copy,
.btn-remove {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-copy:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-remove:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.4);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
    padding: 10px 24px;
  }

  .header-logo {
    order: -1;
  }

  .header-logo img {
    height: 40px;
  }

  .header-nav-center {
    width: 100%;
    order: 0;
  }

  .main-nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .header-actions {
    order: 1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-header,
  .btn-discord {
    padding: 8px 16px;
    font-size: 14px;
  }

  .btn-discord-icon {
    width: 18px;
    height: 18px;
  }

  .hero {
    min-height: 60vh;
    padding: 60px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .features-grid,
  .services-grid,
  .proof-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .proof-media-grid {
    grid-template-columns: 1fr;
  }

  .music-player {
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }

  .music-btn,
  .music-skip-btn {
    width: 40px;
    height: 40px;
  }

  .music-icon {
    width: 24px;
    height: 24px;
  }

  .music-skip-icon {
    width: 16px;
    height: 16px;
  }

  .drop-zone {
    padding: 40px 20px;
  }

  .file-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .file-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
