:root {
  --primary-color: #6366f1;
  --secondary-color: #a855f7;
  --accent-color: #3b82f6;
  --bg-color: #0c0e14;
  --card-bg: rgba(23, 25, 35, 0.7);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-bg: linear-gradient(135deg, #0c0e14 0%, #1a1c2e 100%);
  --glow-color: rgba(99, 102, 241, 0.15);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
}

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

::selection {
  background-color: #7c4dff;
  color: #fff;
}

::-moz-selection {
  background-color: #7c4dff;
  color: #fff;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  background-image: var(--gradient-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  font-weight: 400; /* Explicitly normal */
}

/* Background Effects */
body::before {
  content: '';
  position: fixed;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
  z-index: -1;
  filter: blur(60px);
}

body::after {
  content: '';
  position: fixed;
  bottom: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  z-index: -1;
  filter: blur(60px);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Header Sections */
header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInDown 0.8s ease-out;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 16px;
  display: inline-block;
  text-decoration: none;
}

h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Content Area */
.content-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 40px 0 20px;
  color: #fff;
  display: flex;
  align-items: center;
}

h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 20px;
  background: var(--primary-color);
  margin-right: 12px;
  border-radius: 2px;
}

h2:first-of-type {
  margin-top: 0;
}

p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-weight: 400;
}

ul {
  list-style: none;
  margin-bottom: 24px;
}

li {
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-weight: 400;
}

li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 400;
}

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

a:hover {
  color: #7c4dff;
  border-bottom-color: transparent;
  font-weight: 600;
}

/* Redesigned Standard Footer */
footer {
  margin-top: 100px;
  background: rgba(10, 11, 18, 0.95);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  backdrop-filter: blur(20px);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
}

.footer-column h3 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 300px;
  margin-bottom: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  padding: 0;
  margin-bottom: 12px;
}

.footer-links li::before {
  display: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #7c4dff;
  font-weight: 500;
}

.footer-contact-info p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.footer-contact-info a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-name {
  display: block;
  margin-bottom: 4px;
  color: #fff !important;
  font-weight: 400;
}

.footer-link-name:hover {
  color: #7c4dff !important;
  font-weight: 500;
}

.footer-contact-info i {
  color: var(--primary-color);
  margin-right: 12px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 64px auto 0;
  padding: 32px 24px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .content-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .container {
    padding: 40px 16px;
  }
}


/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: #2d2f3a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3d3f4a;
}
