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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.app {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Video Background and Swirling Animation */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #dbeafe 100%);
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 58, 138, 0.3);
  z-index: 1;
}

.swirling-bg {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(147, 197, 253, 0.2) 35%, transparent 70%);
  border-radius: 50%;
  animation: swirl 20s linear infinite;
  top: -50%;
  left: -50%;
}

.swirling-bg-2 {
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, rgba(219, 234, 254, 0.1) 50%, transparent 70%);
  animation: swirl 15s linear infinite reverse;
  top: -25%;
  left: -25%;
  animation-delay: -5s;
}

.swirling-bg-3 {
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
  animation: swirl 25s linear infinite;
  top: -40%;
  left: -40%;
  animation-delay: -10s;
}

@keyframes swirl {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
}

.content-container {
  text-align: center;
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Brand Section */
.brand-section {
  margin-bottom: 3rem;
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
}

.logo-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-fallback {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff4500 0%, #1e90ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
}

.flame-icon, .ice-icon {
  font-size: 24px;
  animation: elementFloat 2s ease-in-out infinite alternate;
}

.ice-icon {
  animation-delay: 1s;
}

@keyframes elementFloat {
  0% { transform: translateY(-2px); }
  100% { transform: translateY(2px); }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Typography */
.main-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Discord Button */
.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.discord-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.discord-button:hover::before {
  left: 100%;
}

.discord-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(88, 101, 242, 0.6);
  background: linear-gradient(135deg, #6366f1, #5b21b6);
}

.discord-button:active {
  transform: translateY(0);
}

.discord-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Footer Section */
.footer-section {
  margin-top: 4rem;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.notification-bell {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  animation: bellSwing 2s ease-in-out infinite;
}

.bell-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  flex-shrink: 0;
}

@keyframes bellSwing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

.notify-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .content-container {
    padding: 1rem;
  }
  
  .logo-circle {
    width: 100px;
    height: 100px;
  }
  
  .logo-inner {
    width: 70px;
    height: 70px;
  }
  
  .logo-text {
    font-size: 2rem;
  }
  
  .discord-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .main-content {
    padding: 1rem;
  }
  
  .discord-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .discord-icon {
    width: 20px;
    height: 20px;
  }
}