/* SahraCity Custom CSS */
:root {
  --golden: #d4af37;
  --golden-light: #f8e9a1;
  --golden-dark: #b8860b;
  --black: #121212;
  --dark-gray: #1a1a1a;
  --light-gray: #333333;
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--black);
  color: white;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--golden-dark), var(--golden));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--golden), var(--golden-dark));
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

/* Animated Background Particles */
.particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}

/* Animated Cursor */
.cursor-dot, .cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--golden);
  transform: translate(-50%, -50%);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--golden);
  transform: translate(-50%, -50%);
}

/* Navbar Styles */
.navbar {
  background-color: rgba(18, 18, 18, 0.5) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
  padding: 10px 0;
  z-index: 1000;
}

.navbar.navbar-scrolled {
  padding: 8px 0;
  background-color: rgba(18, 18, 18, 0.75) !important;
  box-shadow: 0 2px 15px rgba(212, 175, 55, 0.3);
}

.navbar-brand img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  transition: all 0.5s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.nav-link {
  color: white !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 12px !important;
  margin: 0 4px;
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--golden), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-link:hover {
  color: var(--golden) !important;
  transform: translateY(-2px);
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.discord-btn {
  background: linear-gradient(145deg, var(--golden), var(--golden-dark));
  color: var(--black) !important;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(184, 134, 11, 0.2);
  text-decoration: none !important;
  display: flex;
  align-items: center;
}

.discord-btn.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}

.no-underline::before {
  display: none !important;
}

.discord-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--golden-dark), var(--golden));
  transition: all 0.4s ease;
  z-index: -1;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
  color: var(--black) !important;
}

.discord-btn:hover::before {
  left: 0;
}

.no-underline::before {
  display: none !important;
}

/* User dropdown styles */
.user-avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu {
  background-color: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 8px;
  margin-top: 10px;
}

.dropdown-item {
  color: #e0e0e0;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--golden);
}

.dropdown-item i {
  color: var(--golden);
}

.dropdown-divider {
  border-color: rgba(212, 175, 55, 0.2);
  margin: 5px 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
  will-change: transform;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 15px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-badge span {
  color: var(--golden);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge i {
  margin-right: 5px;
  animation: pulse 2s infinite;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff, var(--golden), #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s ease-in-out infinite alternate;
  letter-spacing: 2px;
}

.text-highlight {
  color: var(--golden);
  position: relative;
  -webkit-text-fill-color: var(--golden);
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(212, 175, 55, 0.2);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e0e0e0;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #d0d0d0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  margin: 0 5px;
}

.hero-feature i {
  color: var(--golden);
  font-size: 1.2rem;
}

.hero-feature span {
  font-size: 1rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px;
  }
}

.hero-btn {
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-btn.primary {
  background: linear-gradient(145deg, var(--golden), var(--golden-dark));
  color: var(--black);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.hero-btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--golden-dark), var(--golden));
  transition: all 0.4s ease;
  z-index: -1;
}

.hero-btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(184, 134, 11, 0.5);
  color: var(--black);
}

.hero-btn.primary:hover::before {
  left: 0;
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.server-status {
  display: inline-flex;
  margin: 30px auto 0;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  padding: 10px 25px;
  align-items: center;
  gap: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00ff4c;
  box-shadow: 0 0 10px #00ff4c;
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #00ff4c;
}

.server-ip {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
}

.server-ip span {
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
  color: var(--golden);
}

.copy-ip {
  background: none;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-ip:hover {
  color: var(--golden);
}

.player-count {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.player-count strong {
  color: var(--golden);
}

@media (max-width: 768px) {
  .server-status {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
  
  .status-indicator, .server-ip, .player-count {
    width: 100%;
    justify-content: center;
  }
}

.mouse-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.7;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 1s both, bounce 2s ease infinite;
}

.mouse-scroll:hover {
  opacity: 1;
  cursor: pointer;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--golden);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--golden);
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}

/* Section Title */
.section-title {
  position: relative;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--golden-dark), var(--golden), var(--golden-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, transparent, var(--golden), transparent);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textShine {
  0% {
    background-position: -500% 0;
  }
  100% {
    background-position: 500% 0;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-progress-container.visible {
  opacity: 1;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--golden-dark), var(--golden));
  width: 0%;
  transition: width 0.1s ease;
}

/* Section Navigation */
.section-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
  gap: 15px;
}

.section-nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.section-nav-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--golden);
  transition: all 0.3s ease;
}

.section-nav-dot:hover, .section-nav-dot.active {
  background-color: rgba(212, 175, 55, 0.3);
}

.section-nav-dot:hover::before, .section-nav-dot.active::before {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
  .section-nav {
    display: none;
  }
}

/* Info Section */
.info-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--black);
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 1;
}

.info-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(25, 25, 25, 0.7));
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), transparent);
  z-index: -1;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 175, 55, 0.2);
}

.info-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--golden), var(--golden-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
  font-size: 1.5rem;
  color: var(--black);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--golden);
  position: relative;
  display: inline-block;
}

.info-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--golden);
  border-radius: 3px;
}

.info-card p {
  color: #d0d0d0;
  font-size: 1rem;
  line-height: 1.6;
}

/* About Section */
.about-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--dark-gray);
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, var(--black), var(--dark-gray));
  z-index: 1;
}

.about-content {
  padding: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.about-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.about-img:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.about-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(18, 18, 18, 0.3));
  z-index: 1;
}

.about-img::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  border-top: 3px solid var(--golden);
  border-right: 3px solid var(--golden);
  z-index: 2;
}

.about-img img {
  width: 100%;
  height: auto;
  transition: all 0.8s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

/* Server Stats */
.server-stats {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item {
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--golden);
  margin-bottom: 5px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(184, 134, 11, 0.5);
  position: relative;
}

.stat-number.floating {
  animation: floating 3s ease-in-out infinite;
}

.stat-number.floating-slow {
  animation: floating 4s ease-in-out infinite;
}

.stat-number.floating-fast {
  animation: floating 2s ease-in-out infinite;
}

.stat-label {
  font-size: 1.1rem;
  color: #a0a0a0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Scripts Section */
.scripts-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--black);
  overflow: hidden;
}

.scripts-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, var(--dark-gray), var(--black));
  z-index: 1;
}

.script-card {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.script-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.script-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.script-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.script-card:hover img {
  transform: scale(1.1);
}

.script-card:hover .script-overlay {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.script-overlay h4 {
  color: var(--golden);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  transform: translateY(20px);
  opacity: 0.8;
  transition: all 0.3s ease 0.1s;
}

.script-overlay p {
  color: #e0e0e0;
  font-size: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.2s;
}

.script-card:hover .script-overlay h4,
.script-card:hover .script-overlay p {
  transform: translateY(0);
  opacity: 1;
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--golden), transparent);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  transition: all 0.5s ease;
}

.footer-logo img:hover {
  transform: rotate(10deg);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links li a:hover {
  background: linear-gradient(145deg, var(--golden), var(--golden-dark));
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.copyright {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin-top: 20px;
}

.developer-link {
  color: var(--golden);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.developer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--golden);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.developer-link:hover {
  color: var(--golden-light);
}

.developer-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .about-img {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .info-card, .script-card {
    margin-bottom: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .footer {
    text-align: center;
  }
  
  .social-links {
    margin: 20px 0;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
}