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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffd700;
}

.nav a {
  color: #bbbbbb;
  text-decoration: none;
  margin: 0 22px;
  font-weight: 500;
}

.nav a:hover {
  color: #ffd700;
}

.top-apply-btn {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  color: black;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.3s;
}

.top-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1f1f1f, #0a0a0a);
  text-align: center;
  padding-top: 90px;
}

.hero-content h1 {
  font-size: 4.8rem;
  margin-bottom: 15px;
  color: #e5e5e5;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #f8f8f8, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.8),
    0 -1px 2px rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.tagline {
  font-size: 1.4rem;
  color: #aaaaaa;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.card-wrapper {
  perspective: 1600px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* No Shadow Version - Pure Card */
.crypto-card {
  width: 380px;
  height: auto;
  max-height: 230px;
  border-radius: 20px;
  background: transparent !important;
  box-shadow: none !important;           /* Removed shadow */
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  object-fit: contain;
}

.card-wrapper:hover .crypto-card {
  transform: translateY(-45px) rotateX(10deg) rotateY(12deg) scale(1.12);
  box-shadow: 0 40px 90px rgba(255, 215, 0, 0.3);   /* Only light gold glow on hover */
}

.cta-section h2 {
  font-size: 2.3rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.big-apply-btn {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  color: black;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 20px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
}

.big-apply-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
}

/* Form */
.apply-section {
  padding: 120px 5%;
  background: #111111;
  text-align: center;
}

.apply-section h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 50px;
}

input {
  padding: 16px 20px;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
}

input:focus {
  border-color: #ffd700;
  outline: none;
}

.submit-btn {
  background: #ffd700;
  color: black;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 18px 70px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.success-message {
  color: #4ade80;
  font-size: 1.35rem;
  margin-top: 40px;
}

footer {
  text-align: center;
  padding: 60px 20px;
  color: #667;
}