:root {
  --primary: #ff3c3c;
  --primary-glow: rgba(255, 60, 60, 0.4);
  --bg-dark: #0a0a0a;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #b0b0b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px var(--primary-glow);
  }

  50% {
    box-shadow: 0 0 20px var(--primary-glow);
  }

  100% {
    box-shadow: 0 0 5px var(--primary-glow);
  }
}

.reveal {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

#page1 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#page1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#page1-content {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.2rem 2rem;
  z-index: 10;
  background: transparent;
}

.logo {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links a.active {
  color: #ff3c3c;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Notes/Blog Sections */
.notes-section {
  padding: 8rem 2rem;
  text-align: center;
  background: #000;
}

.highlight {
  color: var(--primary);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 4rem;
}

.note-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s;
  text-align: left;
}

.note-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Page Layout Utilities */
.split-layout {
  display: flex;
  gap: 3rem;
  text-align: left;
  margin-top: 3rem;
}

.layout-col {
  flex: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s ease;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  margin-top: 6rem;
  padding: 4rem;
  background: var(--card-bg);
  border-radius: 30px;
}

.stat-item h2 {
  font-size: 3rem;
  color: var(--primary);
  font-family: 'Anton', sans-serif;
}

/* Blog Article Styles */
.blog-content {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a1a1a, #000);
}

.blog-article {
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.emoji-tag {
  background: var(--card-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-flex;
  gap: 5px;
  margin-bottom: 2rem;
}