* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #fd0000;
  --secondary: #f7c531;
  --accent: #00d4aa;
  --dark: #0a0a0f;
  --light: #fafafa;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  background: var(--dark);
  overflow: hidden;
  color: var(--light);
}

/* Animated Geometric Background */
.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 170, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(247, 197, 49, 0.08) 0%, transparent 60%),
    var(--dark);
}

.bg-shapes {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  border-color: var(--primary);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  border-color: var(--secondary);
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  border-color: var(--accent);
  top: 50%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(90deg); }
  50% { transform: translate(0, -60px) rotate(180deg); }
  75% { transform: translate(-30px, -30px) rotate(270deg); }
}

/* Grid Pattern Overlay */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Glassmorphism Container */
.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
}

/* Main Card */
.main-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 60px 50px;
  max-width: 800px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  animation: cardFadeIn 1s ease-out;
}



@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Profile Section */
.profile-section {
  margin-bottom: 30px;
}

.profile-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fafafa;
  position: relative;
  animation: iconPulse 3s infinite ease-in-out;
}

.profile-icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
  animation: glow 2s infinite ease-in-out alternate;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glow {
  from { opacity: 0.3; }
  to { opacity: 0.6; }
}

/* Typography */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.description {
  font-size: 18px;
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.description i {
  margin-right: 8px;
  color: var(--light);
}

/* Decorative Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 50px;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 1px;
}

.status-badge .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* CTA Section */
.cta-section {
  margin-top: 35px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8f5e);
  color: var(--dark);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: var(--glass);
  color: var(--light);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Footer */
footer {
  position: absolute;
  bottom: 30px;
  font-size: 13px;
  opacity: 0.5;
  letter-spacing: 1px;
  color: #fafafa;
}

/* Floating Icons Background */
.float-icons {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 24px;
  opacity: 0.1;
  animation: floatIcon 15s infinite linear;
}

.float-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: -3s; }
.float-icon:nth-child(3) { bottom: 30%; left: 8%; animation-delay: -6s; }
.float-icon:nth-child(4) { bottom: 15%; right: 10%; animation-delay: -9s; }
.float-icon:nth-child(5) { top: 50%; left: 5%; animation-delay: -12s; }

@keyframes floatIcon {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -20px) rotate(180deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .main-card {
    padding: 40px 30px;
    margin: 20px;
  }
  
  .main-title {
    font-size: 36px;
  }
  
  .description {
    font-size: 16px;
  }
  
  .profile-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  
  .cta-section {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}