:root {
  --primary: #ff4d00;
  --primary-glow: rgba(255, 77, 0, 0.4);
  --secondary: #ff8c00;
  --bg-dark: #0a0a0c;
  --bg-card: rgba(20, 20, 25, 0.7);
  --text-main: #ffffff;
  --text-muted: #a0a0ab;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-effect: blur(12px) saturate(180%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 77, 0, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 140, 0, 0.05) 0%, transparent 40%);
}

header {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(rgba(10,10,12,0.8), var(--bg-dark)), url('assets/banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 2px solid var(--primary);
}

.logo-header {
  width: 400px;
  max-width: 90%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 25px var(--primary-glow));
  animation: float 3s ease-in-out infinite;
}

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

header h1 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(45deg, #ff4d00, #ff8c00, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
}

nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: var(--glass-effect);
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a:hover, nav a.active {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

section {
  margin-bottom: 6rem;
  scroll-margin-top: 100px;
}

.card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-effect);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  border-color: rgba(255, 77, 0, 0.3);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

h2 .icon {
  background: rgba(255, 77, 0, 0.1);
  padding: 10px;
  border-radius: 12px;
  color: var(--primary);
}

h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
  color: var(--secondary);
}

p {
  margin-bottom: 1.2rem;
  color: #e0e0e0;
}

ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  color: #e0e0e0;
}

.last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: inline-block;
  background: rgba(255,255,255,0.05);
  padding: 4px 12px;
  border-radius: 20px;
}

footer {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
  background: #ff5e1a;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 77, 0, 0.15);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }
  .card {
    padding: 1.5rem;
  }
  nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
