@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg-primary: #150303;
  --bg-secondary: #220a0a;
  --bg-tertiary: #2e1111;
  --accent-gold: #dfc9a5;
  --accent-gold-hover: #f1dfc5;
  --accent-gold-rgb: 223, 201, 165;
  --text-primary: #f5eedc;
  --text-secondary: #c5bba8;
  --text-muted: #8c7e6b;
  --border-color: rgba(223, 201, 165, 0.15);
  --border-color-glowing: rgba(223, 201, 165, 0.45);
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --success-green: #4ade80;
  --success-green-rgb: 74, 222, 128;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
}

.gold-text {
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold) 30%, #fef3e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Morphing Header */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  margin-top: 25px;
  border-radius: 50px;
  background: rgba(34, 10, 10, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  padding: 10px 30px;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  border-radius: 0;
  background: rgba(21, 3, 3, 0.95);
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: none; /* Removed bottom cream line */
  padding: 15px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  object-fit: cover;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 36px;
  width: 36px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: var(--transition-smooth);
  position: relative;
}

nav ul li a:hover, nav ul li a.active-nav {
  color: var(--accent-gold);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

nav ul li a.active-nav::after, nav ul li a:hover::after {
  width: 60%;
}

/* Mobile Menu Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Sections General */
section {
  min-height: 100vh;
  padding: 140px 20px 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero Section */
#home {
  background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding-top: 180px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.hero-logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 10px;
  animation: float 6s ease-in-out infinite;
}

.hero-logo-container::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 201, 165, 0.2) 0%, transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  object-fit: cover;
  box-shadow: 0 0 40px rgba(223, 201, 165, 0.15);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 4px;
}

.hero-desc {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 750px;
  line-height: 1.8;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #bfa57a 100%);
  color: var(--bg-primary);
  border: none;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(223, 201, 165, 0.35);
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
}

.btn-outline {
  border: 1px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(223, 201, 165, 0.08);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Info Grid (3 Columns) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  width: 100%;
}

.info-card {
  background: rgba(34, 10, 10, 0.45);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 35px;
  transition: var(--transition-smooth);
}

.info-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.info-card-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Feature Split Layout */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 80px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon-box {
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(223, 201, 165, 0.1);
  border: 1px solid rgba(223, 201, 165, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.feature-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* Roadmap Timeline */
.timeline {
  position: relative;
  max-width: 850px;
  margin: 50px auto 0 auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  top: 30px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px rgba(223, 201, 165, 0.4);
}

.left-item {
  left: 0;
}

.right-item {
  left: 50%;
}

.right-item::after {
  left: -8px;
}

.timeline-content {
  padding: 25px 30px;
  background: rgba(34, 10, 10, 0.45);
  border: 1px solid var(--border-color);
  position: relative;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.timeline-number {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 1px;
}

.timeline-content h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Call to Action Box */
.cta-box {
  background: linear-gradient(135deg, rgba(34, 10, 10, 0.8) 0%, rgba(21, 3, 3, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 850px;
  margin: 80px auto 0 auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(223, 201, 165, 0.06) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  border-radius: 50%;
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* Event Details Area on Home Page */
.event-info-box {
  margin-top: 80px;
  background: rgba(34, 10, 10, 0.45);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 900px;
  backdrop-filter: blur(10px);
}

.event-info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.event-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.event-card {
  background: rgba(21, 3, 3, 0.5);
  border: 1px solid rgba(223, 201, 165, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition-smooth);
}

.event-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.event-card h4 {
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.event-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* About Us page grids */
#about {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.highlight-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition-smooth);
}

.highlight-box:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.highlight-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.highlight-lbl {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-card {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(223,201,165,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.about-quote-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

/* Sponsors Section */
#sponsors {
  background: var(--bg-primary);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

.sponsor-card {
  background: rgba(34, 10, 10, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-glowing);
  box-shadow: 0 10px 25px rgba(223, 201, 165, 0.08);
}

.sponsor-logo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid rgba(223,201,165,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 5px;
}

.sponsor-logo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 50%;
}

.sponsor-name {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.sponsor-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 15px;
}

.sponsor-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: rgba(223, 201, 165, 0.1);
  color: var(--accent-gold);
  border-radius: 20px;
  border: 1px solid rgba(223,201,165,0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
#contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-glowing);
  box-shadow: 0 10px 25px rgba(223, 201, 165, 0.08);
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.contact-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.contact-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-email {
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  word-break: break-all;
  display: inline-block;
}

.contact-email:hover {
  color: var(--text-primary);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 20px;
  background: rgba(34, 10, 10, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.social-item:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.admin-link:hover {
  color: var(--accent-gold);
}

/* Modals & Popups (Reservation OTP Flow) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #110202;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 90%;
  max-width: 440px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--accent-gold);
}

/* OTP Screens States */
.modal-step {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal-step.active {
  display: flex;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Step 1 Form */
.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  width: 100%;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.text-input {
  width: 100%;
  background: rgba(34, 10, 10, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.text-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(223, 201, 165, 0.15);
}

.turnstile-container {
  display: flex;
  justify-content: center;
  min-height: 65px;
}

/* Step 2 OTP Screen (Matching Photos 2 & 3) */
.otp-input-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 15px 0 30px 0;
}

.otp-box {
  width: 60px;
  height: 60px;
  background: #1d0707;
  border: 1.5px solid rgba(223, 201, 165, 0.2);
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.otp-box:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(223, 201, 165, 0.3);
  background: #2b0b0b;
}

.otp-resend {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.otp-resend-link {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
  transition: var(--transition-smooth);
}

.otp-resend-link:hover {
  color: var(--text-primary);
}

/* Step 3 Loading Screen (Matching Photo 4: Green wave spinner) */
.loader-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-wave {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid rgba(74, 222, 128, 0.1);
  border-top-color: var(--success-green);
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.spinner-glow {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  filter: blur(10px);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Step 4 Success Screen (Matching Photo 5: Green checkmark with glow) */
.success-checkmark-wrapper {
  margin: 25px 0;
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: rgba(74, 222, 128, 0.05);
  border: 2px solid var(--success-green);
  box-shadow: 0 0 25px rgba(74, 222, 128, 0.3);
  animation: scaleBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-checkmark {
  width: 40px;
  height: 40px;
  stroke: var(--success-green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.3s ease-out 0.2s forwards;
}

/* Animations Definitions */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes scaleBounce {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* Scroll Triggered Animations CSS Classes */
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Admin Panel Styles (General layout) */
.admin-body {
  background-color: var(--bg-primary);
  min-height: 100vh;
  padding: 40px 20px;
}

.admin-header {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.admin-title-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.admin-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.admin-card-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(223, 201, 165, 0.1);
  padding-bottom: 10px;
}

.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  border-bottom: 2px solid var(--border-color);
  padding: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.admin-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(223, 201, 165, 0.05);
  font-size: 0.95rem;
}

.admin-table tr:hover td {
  background: rgba(223, 201, 165, 0.02);
}

.badge-rank {
  background: rgba(223, 201, 165, 0.1);
  color: var(--accent-gold);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.btn-danger {
  background: transparent;
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
  padding: 6px 12px;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-danger:hover {
  background: rgba(255, 107, 107, 0.1);
  transform: translateY(-1px);
}

.btn-edit {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 6px 12px;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-right: 5px;
}

.btn-edit:hover {
  background: rgba(223, 201, 165, 0.1);
  transform: translateY(-1px);
}

.admin-form-group {
  margin-bottom: 20px;
}

.admin-form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.admin-form-group textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100px;
  resize: vertical;
}

.admin-form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.email-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
}

.email-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(223, 201, 165, 0.05);
}

.email-address {
  font-size: 0.95rem;
}

.email-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Media Queries (Mobile responsiveness) */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual-card {
    width: 100%;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  header {
    width: 95%;
    padding: 10px 20px;
  }
  header.scrolled {
    padding: 12px 20px;
  }
  .mobile-nav-toggle {
    display: block;
  }
  nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(21, 3, 3, 0.98);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    display: none;
    border-radius: 0 0 20px 20px;
  }
  header.scrolled nav {
    top: 60px;
    border-radius: 0;
  }
  nav.active {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    display: block;
    width: 100%;
    padding: 10px;
  }
  nav ul li a::after {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .social-links {
    flex-direction: column;
    gap: 15px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::after {
    left: 23px;
  }
  .right-item {
    left: 0%;
  }
}
