* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #0d1117; color: #e6edf3; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; line-height: 1.6; }
html { scroll-behavior: smooth; }
header { background-color: rgba(13, 17, 23, 0.95); border-bottom: 1px solid #30363d; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.header-container { max-width: 1100px; margin: 0 auto; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.logo-section { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #e6edf3; z-index: 101; position: relative; }
.logo-img { width: 40px; height: 40px; border-radius: 50%; }
.logo-text { font-weight: bold; font-size: 18px; }
.logo-text span { color: #2ecc71; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: #c9d1d9; text-decoration: none; font-size: 14px; transition: color 0.2s; border: 2px solid transparent; padding: 8px 16px; border-radius: 8px; }
nav a:hover { color: #58a6ff; border-color: #58a6ff; }
.hamburger { display: none; flex-direction: column; cursor: pointer; z-index: 101; }
.hamburger span { width: 25px; height: 3px; background-color: #c9d1d9; margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-7px, -7px); }
.mobile-menu { display: none; position: absolute; top: 70px; right: 0; background-color: #161b22; border: 1px solid #30363d; border-radius: 8px; padding: 16px 0; min-width: 200px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); z-index: 100; }
.mobile-menu.active { display: flex; flex-direction: column; }
.mobile-menu a { color: #c9d1d9; text-decoration: none; padding: 12px 24px; font-size: 14px; transition: all 0.2s; border-left: 3px solid transparent; }
.mobile-menu a:hover { color: #58a6ff; background-color: #0d1117; border-left-color: #58a6ff; }
.discord-fab { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #5865f2; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4); transition: all 0.3s; z-index: 999; border: none; }
.discord-fab:hover { background: #4752c4; box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6); transform: scale(1.1); }
.discord-fab img { width: 32px; height: 32px; }
@media (max-width: 768px) { nav { display: none; } .hamburger { display: flex; } .discord-fab { bottom: 20px; right: 20px; width: 56px; height: 56px; } .discord-fab img { width: 28px; height: 28px; } }
.container { max-width: 1100px; margin: 0 auto; padding: 80px 20px; text-align: center; }
.logo { width: 220px; height: auto; margin-bottom: 30px; border-radius: 50%; box-shadow: 0 0 40px rgba(0,0,0,0.7); }
h1 { font-size: 48px; margin-bottom: 16px; font-weight: 700; }
h1 span { color: #2ecc71; }
p.subtitle { font-size: 18px; color: #8b949e; margin-bottom: 60px; line-height: 1.8; }
.section { background-color: #161b22; border: 1px solid #30363d; border-radius: 16px; padding: 50px 40px; margin-bottom: 50px; text-align: center; box-shadow: 0 0 40px rgba(0,0,0,0.5); transition: border-color 0.2s, box-shadow 0.2s; }
.section:hover { border-color: #58a6ff; box-shadow: 0 0 50px rgba(88, 101, 242, 0.2); }
.section h2 { margin-top: 0; margin-bottom: 24px; color: #58a6ff; font-size: 28px; }
.section p, .section li { color: #c9d1d9; line-height: 1.8; font-size: 16px; }
.section ul { list-style-position: inside; padding-left: 0; margin: 0 auto; max-width: 450px; text-align: left; }
.section li { margin-bottom: 12px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 16px; border: 1px solid #30363d; background: #000; box-shadow: inset 0 0 50px rgba(0,0,0,0.8); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.payment-option { 
  border: none; 
  border-radius: 12px; 
  padding: 0; 
  transition: all 0.3s ease; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-decoration: none; 
  color: inherit; 
  height: 150px; 
  overflow: hidden; 
  position: relative; 
  background-color: #ffffff;
  cursor: pointer;
}
.payment-option.stripe { background-color: #ffffff; }
.payment-option.mercadopago { background-color: #5865f2; }
.payment-option:hover { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); transform: translateY(-4px); }
.payment-icon { width: 160px; height: 160px; object-fit: contain; transition: transform 0.3s ease; }
.payment-option:hover .payment-icon { transform: scale(1.08); }

.payment-methods-info { margin-top: 12px; font-size: 14px; color: #8b949e; }

.actions { text-align: center; margin-top: 35px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 17px 36px; background: #5865f2; color: #ffffff; text-decoration: none; font-weight: 600; border-radius: 12px; transition: all 0.3s; font-size: 16px; border: none; cursor: pointer; }
.btn:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(88, 101, 242, 0.3); }
.site-footer { margin-top: 100px; padding: 40px 20px; font-size: 13px; color: #8b949e; text-align: center; border-top: 1px solid #30363d; }
.site-footer a { color: #58a6ff; text-decoration: none; margin: 0 8px; }
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .container { padding: 60px 20px; }
  h1 { font-size: 32px; }
  p.subtitle { font-size: 16px; margin-bottom: 40px; }
  .logo { width: 140px; margin-bottom: 20px; }
  .section { padding: 30px 24px; margin-bottom: 30px; }
  .section h2 { font-size: 22px; margin-bottom: 16px; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .payment-grid { grid-template-columns: 1fr; max-width: 100%; gap: 25px; }
  .payment-option { height: 140px; }
  .payment-icon { width: 140px; height: 140px; }
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-content {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 16px;
  padding: 30px;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #8b949e;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.modal-close:hover {
  color: #e6edf3;
}

.modal-title {
  color: #e6edf3;
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
}

.modal-subtitle {
  color: #8b949e;
  margin-bottom: 25px;
  font-size: 14px;
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #c9d1d9;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  color: #e6edf3;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #58a6ff;
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.loader {
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: none;
  margin-left: 10px;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

