:root {
  --primary-bg: #0a0a0a;
  --secondary-bg: #1a1a1a;
  --accent-lime: #bfff00; /* Neon Lime */
  --accent-gold: #ffd700; /* Gold */
  --text-main: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --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;
}

body, html {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  background-color: #000; /* Deepest layer */
  color: var(--text-main);
  overflow-x: hidden;
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('image.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1; /* Bring to front relative to body */
  filter: brightness(0.7) contrast(1.1);
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 50%, #0a0a0a 100%);
  z-index: 2; /* On top of image */
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 10; /* Content on top of everything */
}

.container {
  max-width: 500px;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: 0.5s;
}

.container:hover::before {
  left: 100%;
}

.logo-container {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-lime);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(191, 255, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(191, 255, 0, 0.5);
}

/* .logo-container i removed as replaced by profile-img */

.heading1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  margin-bottom: 5px;
  line-height: 1.1;
}

.clr {
  font-family: 'Oswald', sans-serif;
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  display: block;
}

.counter {
  background: rgba(191, 255, 0, 0.08);
  border: 1px dashed rgba(191, 255, 0, 0.3);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 35px;
}

.counter p {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

#countdown {
  font-family: 'Oswald', sans-serif;
  font-size: 2.22rem;
  color: var(--accent-lime);
  font-weight: 700;
  display: block;
}

.points ul {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.points li {
  padding: 12px 15px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-dim);
  border: 1px solid transparent;
  transition: var(--transition);
}

.points li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-border);
  transform: translateX(5px);
}

.points li i {
  color: var(--accent-lime);
  margin-right: 15px;
  font-size: 1.1rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 15px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-main {
  background: var(--accent-lime);
  color: #000;
  box-shadow: 0 10px 20px -5px rgba(191, 255, 0, 0.3);
}

.btn-backup {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--glass-border);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-main:hover {
  background: #d4ff00;
  box-shadow: 0 15px 30px -5px rgba(191, 255, 0, 0.5);
}

.btn-backup:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-dim);
}

.btn i {
  margin-left: 12px;
  font-size: 1.4rem;
}

.footer-note {
  margin-top: 40px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  opacity: 0.5;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn-main {
  animation: pulse 2s infinite ease-in-out;
}

@media (max-width: 480px) {
  .container {
    padding: 40px 20px;
  }
  .heading1 {
    font-size: 2.2rem;
  }
  #countdown {
    font-size: 1.8rem;
  }
}
