  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

/* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
  overflow-x: hidden;
  width: 100%;
}
  body {
    background: #0a0a0a;
    font-family: 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #eee;
  }

  /* Navbar container */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    box-shadow:
      0 0 10px #8a061c,
      inset 0 -2px 10px #680112;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 2px solid #680112;
  }

  /* Logo */
  .logo span {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #680112;
    text-shadow:
      0 0 8px #680112,
      0 0 20px #8a061c,
      0 0 30px #680112;
    cursor: default;
    user-select: none;
  }

  /* Nav links */
  /* Nav container and links */
.navbar {
  background: linear-gradient(135deg, #0a0a0a, #121212);
  box-shadow:
    0 0 15px #680112,
    inset 0 -2px 10px #1c003f;
  border-bottom: 2px solid #680112;
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo span {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #680112; /* Electric purple */
  text-shadow:
    0 0 10px #680112,
    0 0 20px #8a061c,
    0 0 30px #680112;
  cursor: default;
  user-select: none;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: #ccc; /* original color */
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition:
    color 0.3s ease,
    box-shadow 0.3s ease,
    text-shadow 0.3s ease;
  text-shadow:
    0 0 5px #680112,
    0 0 10px #8a061c;
}

/* Neon glow on hover */
.nav-links li a:hover,
.nav-links li a:focus {
  color: #680112; /* original hover color */
  box-shadow:
    0 0 8px #680112,
    0 0 20px #8a061c,
    0 0 30px #680112;
  text-shadow:
    0 0 15px #680112,
    0 0 25px #8a061c,
    0 0 40px #680112;
  outline: none;
}

/* Neon underline animation */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: #680112;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
  width: 100%;
}

/* Hamburger button (mobile only) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 10001;
  user-select: none;
}

.menu-toggle span {
  background: #680112; /* original color */
  height: 3px;
  border-radius: 2px;
  box-shadow:
    0 0 8px #8a061c,
    0 0 15px #680112;
  transition: all 0.4s ease;
}

/* Hamburger open state with glowing X */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #ff0033; /* bright red glow on open */
  box-shadow:
    0 0 15px #ff0033,
    0 0 30px #8a061c;
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #ff0033;
  box-shadow:
    0 0 15px #ff0033,
    0 0 30px #8a061c;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 2rem;
    display: none;
    border-top: 2px solid #680112;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.5s ease, opacity 0.4s ease;
  }

  .nav-links.active {
    display: flex;
    max-height: 500px; /* enough height to show all */
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li a {
    font-size: 1.2rem;
    padding: 0.8rem 0;
    width: 100%;
    display: block;
  }
}

/* Desktop styles */
@media screen and (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    max-height: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    flex-direction: row;
    gap: 2.5rem;
    background: none;
    border: none;
    padding: 0;
  }

  .nav-links li a {
    text-shadow:
      0 0 5px #680112,
      0 0 10px #8a061c;
  }
}


  /* About me */
.about-me {
    background: linear-gradient(180deg, #0a0a0a, #0e0e1a); /* Same dark background as the Latest Posts section */
    border-top: 2px solid #8a061c; /* Add a subtle red accent border for style */
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

/* Content Container */
.content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Profile Image with Constant Glowing Effect */
.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #3e3e3e;
    box-shadow: 0 0 15px 5px rgba(103, 1, 18, 0.7); /* Deep red constant glow */
    transition: all 0.3s ease; /* Smooth transition for any other changes */
}

/* Text Content */
.text h1 {
    font-size: 36px;
    color: #680112; /* Bright red accent */
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.text .intro {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #8a061c; /* Slightly lighter gray */
    line-height: 1.5;
}

.text .details {
    font-size: 18px;
    color: #8a061c;
    margin-bottom: 20px;
    line-height: 1.8;
}

.text .mission {
    font-size: 20px;
    color: #8a061c; /* Same red accent */
    font-weight: 500;
}

/* Hover Effects */
.text h1:hover {
    color: #8a061c; /* Yellow accent on hover */
    transition: all 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        width: 150px;
        height: 150px;
    }
}


/* === Floating Social Tab === */
#social-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #0d0d0d;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  color: #680112;
  font-size: 24px;
  box-shadow: 0 0 15px #680112, 0 0 25px #680112;
  animation: neon-glow 2s ease-in-out infinite alternate;
  transition: transform 0.3s, box-shadow 0.3s;
}

#social-tab:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px #680112, 0 0 50px #680112;
}

@keyframes neon-glow {
  0% { box-shadow: 0 0 10px #680112, 0 0 20px #680112; }
  50% { box-shadow: 0 0 20px #680112, 0 0 35px #680112; }
  100% { box-shadow: 0 0 15px #680112, 0 0 25px #680112; }
}

/* Floating Social Tab */
#social-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #0d0d0d;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  color: #680112;
  font-size: 24px;
  box-shadow: 0 0 15px #680112, 0 0 25px #680112;
  animation: neon-glow 2s ease-in-out infinite alternate;
  transition: transform 0.3s, box-shadow 0.3s;
}

#social-tab:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px #680112, 0 0 50px #680112;
}

@keyframes neon-glow {
  0% { box-shadow: 0 0 10px #680112, 0 0 20px #680112; }
  50% { box-shadow: 0 0 20px #680112, 0 0 35px #680112; }
  100% { box-shadow: 0 0 15px #680112, 0 0 25px #680112; }
}

/* Floating Tab */
#social-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #0d0d0d;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  color: #680112;
  font-size: 24px;
  box-shadow: 0 0 15px #680112, 0 0 25px #680112;
  animation: neon-glow 2s ease-in-out infinite alternate;
  transition: transform 0.3s, box-shadow 0.3s;
}

#social-tab:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px #680112, 0 0 50px #680112;
}

@keyframes neon-glow {
  0% { box-shadow: 0 0 10px #680112, 0 0 20px #680112; }
  50% { box-shadow: 0 0 20px #680112, 0 0 35px #680112; }
  100% { box-shadow: 0 0 15px #680112, 0 0 25px #680112; }
}

/* Panel container */
#social-panel {
  position: fixed;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  background: linear-gradient(135deg, #0a0a0a, #1c1c1c);
  border-radius: 15px;
  box-shadow:
    0 0 20px #8a061c,
    inset 0 0 10px #680112;
  color: #680112;
  font-family: 'Orbitron', sans-serif;
  user-select: none;
  z-index: 9999;
  padding: 15px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  border: 1.5px solid #8a061c;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* When visible */
#social-panel.visible {
  opacity: 1;
  pointer-events: auto;
}
/* Panel header */
.panel-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.3rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #aa0622;
  letter-spacing: 0.1em;
  color: #680112;
}

#close-panel {
  cursor: pointer;
  transition: color 0.3s ease;
}

#close-panel:hover {
  color: #d2afff;
}

/* Social buttons container */
.social-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual buttons */
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #d0b9ff;
  background: linear-gradient(145deg, #1a0d3a, #2f1b6b);
  box-shadow:
    0 0 10px #7c3aed99,
    inset 0 -3px 8px #a87eff88;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
}

/* Neon glow effect on hover */
.social-btn:hover {
  color: #fff;
  background: linear-gradient(145deg, #7c3aed, #680112);
  box-shadow:
    0 0 20px #680112,
    inset 0 0 40px #7c3aedcc;
  border-color: #680112;
}

/* Icons style */
.social-btn i {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 2px #7c3aed);
  transition: filter 0.3s ease;
}

.social-btn:hover i {
  filter: drop-shadow(0 0 5px #680112);
}

/* Specific brand colors glow on hover */

.social-btn.x:hover {
  background: linear-gradient(145deg, #1d1f21, #3b3b3d);
  color: #00acee;
  box-shadow:
    0 0 18px #00acee,
    inset 0 0 30px #00acee99;
  border-color: #00acee;
}

.social-btn.youtube:hover {
  background: linear-gradient(145deg, #7a0b0b, #b02020);
  color: #ff0000;
  box-shadow:
    0 0 18px #ff0000,
    inset 0 0 30px #ff000099;
  border-color: #ff0000;
}

.social-btn.kick:hover {
  background: linear-gradient(145deg, #0a2a0a, #217821);
  color: #0acc2f;
  box-shadow:
    0 0 18px #0acc2f,
    inset 0 0 30px #0acc2f99;
  border-color: #0acc2f;
}

.social-btn.discord:hover {
  background: linear-gradient(145deg, #2e2f5e, #4b49a6);
  color: #7289da;
  box-shadow:
    0 0 18px #7289da,
    inset 0 0 30px #7289da99;
  border-color: #7289da;
}

.social-btn.snapchat:hover {
  background: linear-gradient(145deg, #a89b07, #fff700);
  color: #fff700;
  box-shadow:
    0 0 18px #fff700,
    inset 0 0 30px #fff70099;
  border-color: #fff700;
}

.social-btn.instagram:hover {
  background: linear-gradient(145deg, #f58529, #d42f58);
  color: #fff;
  box-shadow: 
    0 0 18px #d42f58, 
    inset 0 0 30px #d42f5899;
  border-color: #d42f58;
}


/* Floating social tab button */
#social-tab {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a0d3a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 15px #8a061c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  color: #680112;
  font-size: 1.4rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

#social-tab:hover {
  background: linear-gradient(145deg, #7c3aed, #680112);
  box-shadow: 0 0 30px #680112;
  color: #fff;
}



#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px); /* 💡 The blur effect */
  background-color: rgba(0, 0, 0, 0.3); /* Optional: subtle dark overlay */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

#preloader.fade-out {
  opacity: 0;
}

.logo-container {
  text-align: center;
}

#preloader .logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #680112; /* Vibranium purple border */
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 10px #680112);
}

.tagline {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 20px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #680112;
}

/* Spinner */
.spinner {
  margin: 20px auto 0;
  border: 4px solid #fff;
  border-top: 4px solid #680112;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* Keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.welcome-text {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  font-family: 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #680112; /* Vibranium purple */
  background: rgba(10, 10, 15, 0.8); /* Near black with subtle transparency */
  padding: 8px 25px;
  border-radius: 25px;
  box-shadow:
    0 0 10px #680112,  /* Deep purple glow */
    0 0 25px #680112;  /* Softer purple highlight */
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 10000;
  pointer-events: none;
  user-select: none;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(150, 150, 150, 0.3); /* Metallic silver border */
  color: #680112; /* Slightly lighter purple for text */
}

/* Show + gentle slide + glow pulse */
.welcome-text.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: pulseGlow 3.5s ease-in-out forwards;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 0 12px #6a0dad,
      0 0 30px #680112;
  }
  50% {
    box-shadow:
      0 0 20px #680112,
      0 0 40px #680112;
  }
}





/* Hero */
#hero { height: 100vh; background: url('../img/logo.webp') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; }
#hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 0, 30, 0.7); }
.hero-content { position: relative; color: #fff; }
.hero-content h1 { font-size: 3rem; margin-bottom: 10px; text-shadow: 0 0 12px #680112; }
.hero-content span { color: #d83550; }
.hero-content p { font-size: 1.2rem; margin-bottom: 20px; }
.avatar { width: 130px; border-radius: 50%; margin-bottom: 15px; border: 4px solid #680112; box-shadow: 0 0 15px #680112; }
.btn { padding: 12px 25px; background: linear-gradient(90deg, #680112, #680112); border-radius: 30px; color: #fff; text-decoration: none; transition: 0.3s; box-shadow: 0 0 10px #680112; }
.btn:hover { background: linear-gradient(90deg, #680112, #680112); box-shadow: 0 0 20px #680112; }

/* Feed */
/* Feed Section */
#feed {
  border-top: 2px solid #8a061c;
  padding: 60px 30px;
  background: linear-gradient(180deg, #0a0a0a, #0e0e1a);
  color: #680112;
  text-align: center;
}

#feed h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #680112;
  text-shadow: 0 0 10px #680112;
  margin-bottom: 40px;
  position: relative;
}

.feed-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Centers items vertically */
    gap: 30px;
    margin: 0 auto;
    padding: 0 20px; /* Optional: adds some padding on the sides */
}


/* Post Card */
.post {
  background: linear-gradient(135deg, #121212, #1a1a2e);
  border: 1.5px solid #680112;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 0 20px #7c3aed22, inset 0 0 10px #7c3aed11;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #68011244;
}

.post img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #444;
}

/* Post Text */
.post p {
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: left;
}

/* Actions */
.post-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.like-btn {
  background: transparent;
  border: 1px solid #680112;
  color: #680112;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

.like-btn:hover {
  background: #680112;
  color: #0a0a0a;
  box-shadow: 0 0 10px #680112;
}

.likes {
  font-size: 0.85rem;
  color: #aaa;
  font-family: 'Orbitron', sans-serif;
}

.like-btn.liked {
  background: #680112;
  color: #0a0a0a;
  border-color: #680112;
  box-shadow: 0 0 10px #680112;
}



/* Container styling */
.live-section {
  border-top: 2px solid #8a061c;
  position: relative;
  background: radial-gradient(circle at center, #0a0a0a, #0a0a0a 80%);
  padding: 3rem 0 4rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  color: #680112;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Neon Title */
.live-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #680112;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow:
    0 0 6px #680112,
    0 0 20px #fff,
    0 0 30px #680112;
  position: relative;
}

/* Glowing underline bar */
.live-section h2::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  margin: 8px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #680112, #680112);
  box-shadow:
    0 0 8px #680112,
    0 0 20px #680112;
  /* Removed animation */
}

/* Stream embed container */
.stream-embed {
  position: relative;
  width: 90vw;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #0e0e0e, #1b1b1b);
  box-shadow:
    0 0 15px #4b000d,
    inset 0 0 40px #4b000d;
  border: 2px solid #4b000d;
  transition: box-shadow 0.3s ease;
}

/* Neon glow pulse on hover */
.stream-embed:hover {
  box-shadow:
    0 0 30px #4b000d,
    inset 0 0 60px #4b000d,
    0 0 40px #4b000d;
}

/* Embedded iframe */
.stream-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .live-section h2 {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }

  .stream-embed {
    width: 95vw;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .live-section h2 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }

  .stream-embed {
    width: 100vw;
    border-radius: 12px;
  }
}

/* Copyright Section */
.copyright {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), #680112, rgba(0, 0, 0, 0.9)); /* Gradient similar to image */
    padding: 30px 0;
    text-align: center;
    color: #fff; /* Light text color for contrast */
    font-size: 16px;
    border-top: 1px solid #333; /* Subtle border */
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

/* Glowing Effect for Text */
.copyright p {
    margin: 0;
    font-size: 16px;
    color: #fff; /* White text for contrast */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Subtle Glow Effect on Text */
.copyright p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(177, 6, 34, 0.4); 
    animation: glow 1.5s infinite alternate;
    z-index: 0;
}

/* Glow Animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 8px 4px rgba(103, 1, 18, 0.4);
    }
    100% {
        box-shadow: 0 0 16px 8px rgba(103, 1, 18, 0.6);
    }
}

/* Link Styling */
.copyright a {
    color: #000000; 
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

/* Link Hover Effect */
.copyright a:hover {
    color: #918c8e; 
    transform: scale(1.1); 
}

/* Additional Decorative Elements */
.copyright::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #680112, #9b3949); /* Gradient line with #680112 */
    border-radius: 5px;
    animation: pulse 1.5s infinite alternate;
}

/* Pulse Effect for Decorative Line 
@keyframes pulse {
    0% {
        width: 50px;
        opacity: 0.6;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}
*/

/* Community */

#community { border-top: 2px solid #8a061c; padding: 80px 20px; background: #121212; text-align: center; }
#community h2 { font-size: 2rem; color: #680112; margin-bottom: 20px; }
.community-stats { display: flex; justify-content: center; gap: 40px; margin-top: 20px; }
.stat h3 { font-size: 2rem; color: #680112; text-shadow: 0 0 10px #680112; }

/* Footer */
footer { background: #0a0a0a; text-align: center; padding: 15px; color: #888; }
footer p { font-size: 0.9rem; }
