/* Main Styles for AxtroBlade */
:root {
  --primary-color: #1E90FF; /* Dodger Blue */
  --primary-glow: rgba(30, 144, 255, 0.6); /* Glow effect for blue */
  --primary-dark: #0057B8; /* Deeper royal blue */
  --bg-color: #FFFFFF; /* Pure white background */
  --card-bg: #EAF4FF; /* Soft blue-tinted white for cards */
  --text-color: #1A1A1A; /* Near-black for readability */
  --text-secondary: #5C5C5C; /* Neutral gray for secondary text */
  --accent-color: #007BFF; /* Strong blue accent */
  --accent-glow: rgba(0, 123, 255, 0.5); /* Accent glow */
  --danger-color: #FF4C4C; /* Reddish for danger */
  --success-color: #28C76F; /* Bright green for success */
  --header-height: 80px;
  --transition-speed: 0.3s;
}



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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Oxanium', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-glow);
  text-shadow: 0 0 8px var(--primary-glow);
}

button {
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  transition: all var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 100;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

.header-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: calc(100% + 40px);
  height: 100%;
  background: linear-gradient(135deg, transparent 15px, rgba(0, 255, 255, 0.1) 0);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 0 10px var(--primary-glow);
  position: relative;
}

.logo-blade {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 10px var(--primary-glow);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-family: 'Orbitron', sans-serif;
  color: var(--text-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
  box-shadow: 0 0 5px var(--primary-glow);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Section Styles */
section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Button Styles */
.cta-button, 
.play-button, 
.submit-button {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 0;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

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

.cta-button:hover,
.play-button:hover,
.submit-button:hover {
  background-color: rgba(0, 255, 255, 0.1);
  color: white;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: translateY(-2px);
}

.cta-button:hover::before,
.play-button:hover::before,
.submit-button:hover::before {
  left: 100%;
}

/* Footer Styles */
footer {
  background-color: rgba(5, 8, 18, 0.9);
  padding: 3rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 10px var(--primary-glow);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
  text-shadow: 0 0 8px var(--primary-glow);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
}

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

.footer-copyright {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }
}