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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

h1 {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

h1::before {
  content: "GM";
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.redirect-btn {
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  min-height: 60px;
}

.redirect-btn::before {
  content: "+";
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.redirect-btn {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.redirect-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.redirect-btn.secondary {
  background: white;
  color: #7f8c8d;
  border: 2px solid #ecf0f1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.redirect-btn.secondary::before {
  content: "→";
  background: #ecf0f1;
  color: #7f8c8d;
}

.redirect-btn.secondary:hover {
  border-color: #bdc3c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pending-container {
  margin-top: 30px;
}

.pending-message {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border: 2px solid #dee2e6;
}

.pending-message i {
  font-size: 48px;
  color: #ffc107;
  margin-bottom: 20px;
  display: block;
}

.pending-message h2 {
  color: #495057;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pending-message p {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
    margin: 20px;
  }
  
  h1 {
    font-size: 24px;
  }
  
  .redirect-btn {
    padding: 18px 25px;
    font-size: 15px;
  }
  
  .pending-message {
    padding: 25px 15px;
  }
  
  .pending-message h2 {
    font-size: 20px;
  }
  
  .pending-message p {
    font-size: 14px;
  }
} 