/*
==========================================================================
ZEPHYR SMP WEBSITE STYLES
==========================================================================

Author: GitHub Copilot
Description: Complete stylesheet for Zephyr SMP Minecraft server website
Features: Responsive design, animated backgrounds, rank system, team pages
Color Scheme: Green (#58d68d), Purple (#6c5ce7), Gold (#FFD700), Pink (#fd79a8)

Table of Contents:
1. Global Styles & Reset
2. Header & Navigation
3. Section Layouts
4. Hero Section
5. About Section
6. Features Section
7. Team Pages
8. Responsive Design
9. Animations & Keyframes

==========================================================================
*/

/* ===== 1. GLOBAL STYLES & RESET ===== */

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Main body styling with animated gradient background */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Multi-layered animated background gradient */
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f0f0f 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  
  color: #e0ffe0; /* Light green text color */
  min-height: 100vh;
  position: relative;
}

/* Subtle overlay effects for depth */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Multiple radial gradients for atmospheric effect */
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(88, 214, 141, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(108, 92, 231, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.02) 0%, transparent 50%);
  
  pointer-events: none; /* Don't interfere with page interactions */
  z-index: -1;
}

/* ===== 2. HEADER & NAVIGATION ===== */

/* Static header (legacy - mostly hidden) */
header {
  background-color: #1b1b1b;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  color: #58d68d;
}

/* Main fixed header - always visible with glassmorphism effect */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  
  /* Glassmorphism background with gradient fade */
  background: linear-gradient(180deg, 
    rgba(27, 27, 27, 0.95) 0%,
    rgba(37, 37, 37, 0.8) 50%,
    rgba(27, 27, 27, 0.6) 80%,
    transparent 100%);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(88, 214, 141, 0.1);
  
  color: #fff;
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  
  /* Always visible styling */
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: all 0.4s ease;
  box-sizing: border-box;
}

/* Header brand section with logo and title */
.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.header-brand h1 {
  margin: 0;
  color: #58d68d;
  font-size: 1.5rem;
}

/* Server status indicator */
.server-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(88, 214, 141, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(88, 214, 141, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #58d68d;
  animation: pulse 1.5s ease-in-out infinite;
}

.status-text {
  font-size: 0.8rem;
  color: #58d68d;
  font-weight: 500;
}

/* Navigation menu styling */
nav ul {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  align-items: center;
}

nav a {
  color: #e0ffe0;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.9rem;
}

/* Navigation hover effects */
nav a:hover {
  color: #58d68d;
  transform: scale(1.05);
}

/* Active navigation link styling */
nav a.active {
  background-color: #58d68d22;
  color: #58d68d;
}

/* Responsive header design for mobile devices */
@media (max-width: 768px) {
  #main-header {
    padding: 0.8rem 1rem 1.5rem 1rem;
  }
  
  nav ul {
    gap: 0.5rem;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    height: 100vh;
    background: rgba(15,15,15,0.98);
    box-shadow: -2px 0 16px rgba(0,0,0,0.3);
    padding-top: 5rem;
    transition: right 0.3s;
    z-index: 2000;
  }
  
  nav ul.open {
    right: 0;
  }
  
  nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .header-brand h1 {
    font-size: 1.3rem;
  }
  
  /* Hide server status on small screens to save space */
  .server-status {
    display: none;
  }
  
  .hamburger {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 2100;
  }
  
  .hamburger span,
  .hamburger span:before,
  .hamburger span:after {
    display: block;
    background: #58d68d;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s;
  }
  
  .hamburger span {
    top: 14px;
  }
  
  .hamburger span:before {
    content: '';
    top: -10px;
  }
  
  .hamburger span:after {
    content: '';
    top: 10px;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 0.3rem;
  }
  
  nav a {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
}

/* ===== 3. SECTION LAYOUTS ===== */

/* Base section styling with glassmorphism effect */
section {
  padding: 4rem 2rem;
  position: relative;
  animation: fadeIn 1s ease-out;
}

/* All sections get glassmorphism background */
section {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
}

/* Section separators */
section:not(:last-of-type) {
  border-bottom: 1px solid rgba(88, 214, 141, 0.1);
}

/* Animated section headings */
section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #58d68d;
  position: relative;
  
  /* Initial hidden state for scroll animations */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Animated state when heading comes into view */
section h2.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative underline that expands when animated */
section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  transition: width 0.8s ease-out 0.3s;
}

section h2.animate::after {
  width: 60px;
}

/* ===== 4. HERO SECTION ===== */

/* Main hero section with background image */
.hero {
  background-image: url('img/banner.png'); 
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  overflow: hidden;
  padding-top: 15vh;
}

/* Dark overlay for better text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Animated particles background for depth */
.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, #58d68d, transparent),
    radial-gradient(2px 2px at 40% 70%, #6c5ce7, transparent),
    radial-gradient(1px 1px at 90% 40%, #ff6b6b, transparent);
  background-size: 200px 200px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
  z-index: 1;
}

/* Main hero content container */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

/* Hero badge at the top */
.hero-badge {
  display: inline-block;
  background: linear-gradient(45deg, rgba(88, 214, 141, 0.2), rgba(108, 92, 231, 0.2));
  border: 1px solid rgba(88, 214, 141, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease-out 0.2s both;
}

.badge-text {
  color: #58d68d;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Main hero title */
.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: white;
  animation: slideInDown 1s ease-out 0.4s both;
  line-height: 1.1;
}

/* Highlighted text with gradient effect */
.highlight-text {
  background: linear-gradient(45deg, #58d68d, #6c5ce7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0ffe0;
  animation: fadeInUp 1s ease-out 0.6s both;
  opacity: 0;
}

/* Statistics display section */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.8s both;
  opacity: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #58d68d;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.3rem;
}

/* Hero action buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 1s both;
  opacity: 0;
}

/* Primary call-to-action button */
.primary-btn {
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #58d68d, #45b76a);
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 214, 141, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Secondary button with glass effect */
.learn-more-btn {
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(5px);
}

.learn-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #58d68d;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Shimmer effect overlay for primary button */
.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.primary-btn:hover::before {
  left: 100%;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 214, 141, 0.4);
}

/* ===== 5. ABOUT SECTION ===== */

/* About section introduction */
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* About cards grid layout */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Individual about card styling */
.about-card {
  background-color: #1b1b1b;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on hover */
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Theme-specific card hover effects */
.lore-card:hover {
  border-color: #6c5ce7;
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.spawn-card:hover {
  border-color: #ff6b6b;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.community-card:hover {
  border-color: #74b9ff;
  box-shadow: 0 10px 30px rgba(116, 185, 255, 0.3);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.about-card h3 {
  color: #58d68d;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

/* Theme-specific heading colors */
.lore-card:hover h3 { color: #6c5ce7; }
.spawn-card:hover h3 { color: #ff6b6b; }
.community-card:hover h3 { color: #74b9ff; }

.about-card p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Highlighted about section */
.about-highlight {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(88, 214, 141, 0.1), rgba(108, 92, 231, 0.05));
  border-radius: 12px;
  border-left: 4px solid #58d68d;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-highlight p {
  font-size: 1.2rem;
  color: #58d68d;
  margin: 0;
  font-weight: 500;
}

/* ===== 6. FEATURES SECTION ===== */

/* Features grid layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Individual feature cards */
.feature {
  background-color: #1b1b1b;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px transparent;
}

.feature:hover {
  transform: translateY(-8px);
}

/* Color-coded hover effects for each feature */
.feature:nth-child(1):hover {
  box-shadow: 0 0 20px #58d68d55; /* Green */
}

.feature:nth-child(2):hover {
  box-shadow: 0 0 20px #6c5ce755; /* Purple */
}

.feature:nth-child(3):hover {
  box-shadow: 0 0 20px #ff6b6b55; /* Red */
}

.feature:nth-child(4):hover {
  box-shadow: 0 0 20px #74b9ff55; /* Blue */
}

.feature:nth-child(5):hover {
  box-shadow: 0 0 20px #fd79a855; /* Pink */
}

.feature img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.feature h3 {
  margin-top: 0;
}

/* Color-coded headings for each feature */
.feature:nth-child(1) h3 { color: #58d68d; }
.feature:nth-child(2) h3 { color: #6c5ce7; }
.feature:nth-child(3) h3 { color: #ff6b6b; }
.feature:nth-child(4) h3 { color: #74b9ff; }
.feature:nth-child(5) h3 { color: #fd79a8; }

.feature p {
  color: #ccc;
}

/* ===== 7. TEAM PAGE STYLING ===== */
/* Professional team member presentation with glassmorphism cards */

/* === TEAM HERO SECTION === */
/* Hero section for team page with gradient background and animated elements */

.team-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  padding: 8rem 2rem 6rem 2rem;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(15, 15, 15, 0.8));
  z-index: 2;
}

.team-hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.team-hero-content h1 {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #58d68d, #45b76a, #6c5ce7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(88, 214, 141, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

.team-hero-content p {
  font-size: 1.3rem;
  color: #e0ffe0;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  opacity: 0.9;
}

/* === TEAM MEMBER CARDS === */
/* Professional team member presentation with glassmorphism effects */

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

/* ===== ENHANCED TEAM MEMBER CARDS WITH COLLAPSIBLE DETAILS ===== */
.team-member {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(35, 35, 35, 0.8));
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2rem;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 400px; /* Reduced from 500px */
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-height: auto; /* Allow natural height */
}

/* Expanded card state */
.team-member.expanded-card {
  max-width: 500px;
  transform: scale(1.02);
}

/* Compact member info section */
.member-info {
  text-align: center;
}

.member-info h3 {
  font-size: 1.6rem; /* Reduced from 1.8rem */
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, currentColor, rgba(255, 255, 255, 0.8));
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.member-title {
  font-size: 1rem; /* Reduced from 1.1rem */
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.member-description {
  color: #ccc;
  line-height: 1.6; /* Reduced from 1.7 */
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem; /* Reduced from 1rem */
  padding: 0 0.5rem;
  /* Limit description to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Expand/Collapse Button */
.member-expand-btn {
  background: linear-gradient(135deg, rgba(88, 214, 141, 0.2), rgba(88, 214, 141, 0.1));
  border: 2px solid rgba(88, 214, 141, 0.3);
  color: #58d68d;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-expand-btn:hover {
  background: linear-gradient(135deg, rgba(88, 214, 141, 0.3), rgba(88, 214, 141, 0.15));
  border-color: rgba(88, 214, 141, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(88, 214, 141, 0.2);
}

.expand-icon {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

/* Collapsible Details Section */
.member-details {
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.member-details.collapsed {
  max-height: 0;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}

.member-details.expanded {
  max-height: 2000px; /* Large enough for all content */
  padding: 1.5rem;
  margin: 1rem 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Compact avatar */
.member-avatar {
  position: relative;
  width: 100px; /* Reduced from 120px */
  height: 100px; /* Reduced from 120px */
  margin: 0 auto 1rem; /* Reduced margin */
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

/* Compact stats in expanded state */
.member-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem; /* Reduced gap */
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(88, 214, 141, 0.2);
}

.member-stats .stat {
  text-align: center;
  padding: 1rem; /* Reduced padding */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-radius: 12px; /* Reduced border radius */
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Compact biography section */
.member-biography {
  margin-bottom: 1.5rem; /* Reduced margin */
  padding: 1rem;
  background: linear-gradient(135deg, rgba(88, 214, 141, 0.05), rgba(88, 214, 141, 0.02));
  border-radius: 12px;
  border-left: 4px solid #58d68d;
}

.member-biography h4 {
  color: #58d68d;
  margin-bottom: 0.6rem; /* Reduced margin */
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.member-biography p {
  color: #ddd;
  line-height: 1.6; /* Reduced line height */
  font-size: 0.9rem; /* Reduced font size */
  text-align: left;
}

/* Compact info grid */
.member-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem; /* Reduced gap */
  margin: 1.5rem 0;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem; /* Reduced padding */
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px; /* Reduced border radius */
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

/* Compact specializations and achievements */
.member-specializations,
.member-achievements {
  margin: 1.5rem 0; /* Reduced margin */
}

.member-specializations h4,
.member-achievements h4 {
  color: #58d68d;
  margin-bottom: 0.8rem; /* Reduced margin */
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specialization-tags,
.achievement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem; /* Reduced gap */
}

.spec-tag,
.achievement-tag {
  background: linear-gradient(135deg, rgba(88, 214, 141, 0.15), rgba(88, 214, 141, 0.05));
  color: #58d68d;
  padding: 0.5rem 1rem; /* Reduced padding */
  border-radius: 15px; /* Reduced border radius */
  font-size: 0.8rem; /* Reduced font size */
  font-weight: 600;
  border: 2px solid rgba(88, 214, 141, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Compact contact button in expanded state */
.member-details .member-contact-btn {
  background: linear-gradient(135deg, #58d68d, #4CAF50);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem; /* Reduced padding */
  border-radius: 25px; /* Reduced border radius */
  font-weight: 700;
  font-size: 0.9rem; /* Reduced font size */
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced grid layout for compact cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Reduced from 400px */
  gap: 2rem; /* Reduced gap */
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Mobile responsiveness for compact design */
@media (max-width: 768px) {
  .team-member {
    padding: 1.5rem 1rem; /* Reduced padding */
    max-width: 100%;
    margin-bottom: 1.5rem; /* Reduced margin */
  }
  
  .team-member.expanded-card {
    max-width: 100%;
    transform: none; /* Remove scale on mobile */
  }
  
  .member-avatar {
    width: 80px; /* Further reduced for mobile */
    height: 80px;
  }
  
  .member-info h3 {
    font-size: 1.4rem; /* Reduced for mobile */
  }
  
  .team-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem; /* Reduced gap */
    padding: 1rem 0; /* Reduced padding */
  }
  
  .member-stats {
    grid-template-columns: 1fr; /* Single column stats on mobile */
  }
}

@media (max-width: 600px) {
  .ranks-grid,
  .ranks-list,
  .rank-category,
  .rank-item,
  .rank-card {
    padding: 0.7rem !important;
    margin: 0.5rem 0 !important;
    font-size: 0.9rem !important;
    border-radius: 10px !important;
  }
  .rank-header h3,
  .rank-card h3 {
    font-size: 1.1rem !important;
  }
  .rank-icon {
    font-size: 1.3rem !important;
  }
  .rank-card p,
  .rank-item p {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }
}

/* ===== 8. RESPONSIVE DESIGN & MOBILE OPTIMIZATION ===== */
/* Mobile-first approach with progressive enhancement for larger screens */

/* Staff Ranks Section */
.staff-ranks {
  max-width: 1000px;
  margin: 4rem auto;
  text-align: center;
}

.staff-ranks h2 {
  color: #58d68d;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.staff-ranks > p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ranks-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.rank-item {
  background: linear-gradient(145deg, rgba(27, 27, 27, 0.95), rgba(37, 37, 37, 0.9));
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(88, 214, 141, 0.1);
  position: relative;
  overflow: hidden;
}

.rank-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rank-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rank-icon {
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(88, 214, 141, 0.1);
}

.rank-item h3 {
  color: #58d68d;
  font-size: 1.3rem;
  margin: 0;
}

.rank-item p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Rank-specific hover effects and colors */
.admin-rank:hover {
  border-color: #a31621;
  box-shadow: 0 10px 30px rgba(163, 22, 33, 0.2);
}

.admin-rank .rank-icon {
  background: rgba(163, 22, 33, 0.1);
}

.admin-rank h3 {
  color: #a31621;
}

.director-rank:hover {
  border-color: #FF5555;
  box-shadow: 0 10px 30px rgba(255, 85, 85, 0.2);
}

.director-rank .rank-icon {
  background: rgba(255, 85, 85, 0.1);
}

.director-rank h3 {
  color: #FF5555;
}

.supervisor-rank:hover {
  border-color: #a01a7d;
  box-shadow: 0 10px 30px rgba(160, 26, 125, 0.2);
}

.supervisor-rank .rank-icon {
  background: rgba(160, 26, 125, 0.1);
}

.supervisor-rank h3 {
  color: #a01a7d;
}

.moderator-rank:hover {
  border-color: #FFAA00;
  box-shadow: 0 10px 30px rgba(255, 170, 0, 0.2);
}

.moderator-rank .rank-icon {
  background: rgba(255, 170, 0, 0.1);
}

.moderator-rank h3 {
  color: #FFAA00;
}

.developer-rank:hover {
  border-color: #05668d;
  box-shadow: 0 10px 30px rgba(5, 102, 141, 0.2);
}

.developer-rank .rank-icon {
  background: rgba(5, 102, 141, 0.1);
}

.developer-rank h3 {
  color: #05668d;
}

.supporter-rank:hover {
  border-color: #5555FF;
  box-shadow: 0 10px 30px rgba(85, 85, 255, 0.2);
}

.supporter-rank .rank-icon {
  background: rgba(85, 85, 255, 0.1);
}

.supporter-rank h3 {
  color: #5555FF;
}

.entertainer-rank:hover {
  border-color: #55FFFF;
  box-shadow: 0 10px 30px rgba(85, 255, 255, 0.2);
}

.entertainer-rank .rank-icon {
  background: rgba(85, 255, 255, 0.1);
}

.entertainer-rank h3 {
  color: #55FFFF;
}

.builder-rank:hover {
  border-color: #FFFF55;
  box-shadow: 0 10px 30px rgba(255, 255, 85, 0.2);
}

.builder-rank .rank-icon {
  background: rgba(255, 255, 85, 0.1);
}

.builder-rank h3 {
  color: #FFFF55;
}

.junior-rank:hover {
  border-color: #55FF55;
  box-shadow: 0 10px 30px rgba(85, 255, 85, 0.2);
}

.junior-rank .rank-icon {
  background: rgba(85, 255, 85, 0.1);
}

.junior-rank h3 {
  color: #55FF55;
}

.team-join {
  max-width: 800px;
  margin: 4rem auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(88, 214, 141, 0.1), rgba(108, 92, 231, 0.05));
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid rgba(88, 214, 141, 0.2);
}

.team-join h2 {
  color: #58d68d;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.team-join p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.join-requirements {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.join-requirements h3 {
  color: #58d68d;
  margin-bottom: 1rem;
  text-align: center;
}

.join-requirements ul {
  list-style: none;
  padding: 0;
}

.join-requirements li {
  padding: 0.5rem 0;
  color: #ccc;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.join-requirements li:last-child {
  border-bottom: none;
}

.apply-info {
  background: rgba(88, 214, 141, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #58d68d;
}

.apply-info p {
  margin: 0;
  color: #e0ffe0;
}

/* ===== ADDITIONAL ITEMS SECTION ===== */
.shop-additional {
  margin: 4rem 0;
  text-align: center;
}

.shop-additional h2 {
  font-size: 2rem;
  color: #58d68d;
  margin-bottom: 2rem;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.item-card {
  background: linear-gradient(145deg, #1b1b1b, #252525);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.item-card:hover {
  transform: translateY(-5px);
  border-color: #58d68d;
  box-shadow: 0 10px 25px rgba(88, 214, 141, 0.2);
}

.item-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.item-card h3 {
  color: #58d68d;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.item-card p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.item-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.item-buy-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #58d68d, #45b76a);
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.item-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 214, 141, 0.3);
}

/* ===== RANKS SECTION ===== */
#ranks {
  padding: 4rem 2rem;
  position: relative;
  animation: fadeIn 1s ease-out;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(88, 214, 141, 0.1);
}

.ranks-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.ranks-intro p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.ranks-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rank-category {
  background: linear-gradient(145deg, rgba(27, 27, 27, 0.8), rgba(37, 37, 37, 0.6));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(88, 214, 141, 0.1);
}

.rank-category h3 {
  color: #58d68d;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(88, 214, 141, 0.3);
  transition: all 0.3s ease;
}

/* Specific colors for different rank category headings */
.rank-category h3[style*="#a31621"] {
  text-shadow: 0 0 10px rgba(163, 22, 33, 0.3);
}

.rank-category h3[style*="#FFD700"] {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.rank-category h3[style*="#45B45E"] {
  text-shadow: 0 0 10px rgba(69, 180, 94, 0.3);
}

.rank-category > p {
  text-align: center;
  color: #999;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Dynamic symmetric layout for all rank categories using flexbox */
.ranks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure consistent card width for all rank cards */
.ranks-grid .rank-card {
  flex: 0 0 calc(33.333% - 0.533rem);
  min-width: 180px;
  max-width: 200px;
}

/* Responsive breakpoints for all rank categories */
@media (max-width: 920px) {
  .ranks-grid .rank-card {
    flex: 0 0 calc(50% - 0.4rem);
  }
}

@media (max-width: 600px) {
  .ranks-grid .rank-card {
    flex: 0 0 100%;
  }
}

.rank-card {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.8));
  border-radius: 8px;
  padding: 0.8rem;
  border: 1px solid rgba(88, 214, 141, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  min-height: auto;
}

.rank-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rank-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.rank-icon {
  font-size: 1.2rem;
  opacity: 0.9;
}

.rank-info h4 {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.rank-code {
  background: rgba(88, 214, 141, 0.1);
  color: #58d68d;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: bold;
}

.rank-card p {
  color: #ccc;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
}

.rank-action {
  text-align: center;
}

.rank-btn {
  display: inline-block;
  background: linear-gradient(45deg, #58d68d, #45b76a);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.rank-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(88, 214, 141, 0.3);
  background: linear-gradient(45deg, #45b76a, #58d68d);
}

.rank-info-text {
  color: #58d68d;
  font-weight: 600;
  font-size: 1rem;
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  .rank-card {
    transition: none;
  }
  
  .rank-card:active {
    transform: scale(0.98);
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
  }
  
  .rank-btn {
    min-height: 44px;
    touch-action: manipulation;
  }
  
  .rank-btn:active {
    transform: scale(0.96);
  }
}

/* Staff rank specific styling */
.staff-rank {
  border-color: rgba(163, 22, 33, 0.2);
}

.staff-rank:hover {
  border-color: rgba(163, 22, 33, 0.4);
  box-shadow: 0 8px 25px rgba(163, 22, 33, 0.2);
}

/* Premium rank specific styling */
.premium-rank {
  border-color: rgba(0, 170, 0, 0.2);
}

.premium-rank:hover {
  border-color: rgba(0, 170, 0, 0.4);
  box-shadow: 0 8px 25px rgba(0, 170, 0, 0.2);
}

/* Free rank specific styling */
.free-rank {
  border-color: rgba(88, 214, 141, 0.2);
}

.free-rank:hover {
  border-color: rgba(88, 214, 141, 0.4);
  box-shadow: 0 8px 25px rgba(88, 214, 141, 0.2);
}

/* === ENHANCED MOBILE RESPONSIVE BREAKPOINTS === */

/* Small tablets and large phones (768px and down) */
@media (max-width: 768px) {
  /* Ranks section overall improvements */
  #ranks {
    padding: 2rem 1rem;
  }
  
  #ranks h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .ranks-intro p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  
  .ranks-categories {
    gap: 2.5rem;
  }
  
  .rank-category {
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .rank-category h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .rank-category p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .ranks-grid {
    flex-direction: column;
    align-items: center;
    max-width: none;
    gap: 1rem;
  }
  
  .ranks-grid .rank-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    padding: 1.2rem;
  }
  
  .rank-card .rank-header {
    gap: 0.8rem;
  }
  
  .rank-card .rank-icon {
    font-size: 1.4rem;
  }
  
  .rank-card h4 {
    font-size: 1.1rem;
  }
  
  .rank-card .rank-code {
    font-size: 0.8rem;
  }
  
  .rank-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .rank-action {
    margin-top: 1.5rem;
  }
  
  .rank-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .rank-info-text {
    font-size: 0.85rem;
  }
}

/* Mobile phones (480px and down) */
@media (max-width: 480px) {
  #ranks {
    padding: 1.5rem 0.8rem;
  }
  
  #ranks h2 {
    font-size: 1.8rem;
  }
  
  .ranks-categories {
    gap: 2rem;
  }
  
  .rank-category {
    padding: 1rem;
    margin: 0 0.5rem;
  }
  
  .rank-category h3 {
    font-size: 1.3rem;
  }
  
  .ranks-grid .rank-card {
    max-width: 100%;
    padding: 1rem;
  }
  
  .rank-card .rank-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .rank-card .rank-info {
    text-align: center;
  }
  
  .rank-card .rank-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .rank-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }
  
  .rank-card .rank-code {
    font-size: 0.75rem;
    opacity: 0.8;
  }
  
  .rank-card p {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.8rem;
  }
}

/* Very small screens (360px and down) */
@media (max-width: 360px) {
  #ranks {
    padding: 1rem 0.5rem;
  }
  
  .rank-category {
    padding: 0.8rem;
    margin: 0;
  }
  
  .ranks-grid {
    gap: 0.8rem;
  }
  
  .ranks-grid .rank-card {
    padding: 0.8rem;
  }
  
  .rank-card h4 {
    font-size: 1.1rem;
  }
  
  .rank-card p {
    font-size: 0.75rem;
  }
  
  .rank-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}


/* ===== 10. FOOTER & CONTACT SECTIONS ===== */
/* Contact methods, footer styling, and additional page content */

/* ===== JOIN SECTION ===== */
.join-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

/* Server info and steps cards */
.server-info, .join-steps {
  background-color: #1b1b1b;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #58d68d;
}

.server-info h3, .join-steps h3 {
  color: #58d68d;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Code styling for server IP */
.server-info code {
  background-color: #2a2a2a;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: #58d68d;
  font-family: 'Courier New', monospace;
}

.join-steps ol {
  margin: 0;
  padding-left: 1.5rem;
}

.join-steps li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.join-note {
  text-align: center;
  font-style: italic;
  color: #ccc;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Individual contact method cards */
.contact-method {
  background-color: #1b1b1b;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.contact-method h4 {
  color: #58d68d;
  margin-top: 0;
  font-size: 1.2rem;
}

/* Contact link buttons */
.contact-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background-color: #58d68d;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background-color: #45b76a;
  transform: translateY(-2px);
}

.contact-info, .contact-note {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-note {
  color: #ccc;
  font-style: italic;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* ===== ENHANCED CONTACT FORM STYLING ===== */
.contact-form-container {
  background: linear-gradient(145deg, rgba(27, 27, 27, 0.95), rgba(37, 37, 37, 0.9));
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(88, 214, 141, 0.2);
  margin: 3rem auto;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Animated background effect */
.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 214, 141, 0.05), transparent);
  transition: left 0.6s ease;
}

.contact-form-container:hover::before {
  left: 100%;
}

.contact-form-container h3 {
  color: #58d68d;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(88, 214, 141, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

.contact-form-container::after {
  content: 'Get in touch with our team';
  display: block;
  text-align: center;
  color: #a0a0a0;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.contact-form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  color: #58d68d;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.form-group:focus-within label {
  color: #45b76a;
  text-shadow: 0 0 10px rgba(88, 214, 141, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 2px solid rgba(88, 214, 141, 0.3);
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.8));
  color: #e0ffe0;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #58d68d;
  box-shadow: 
    0 0 20px rgba(88, 214, 141, 0.4),
    inset 0 0 10px rgba(88, 214, 141, 0.1);
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.9));
  transform: scale(1.02);
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
  font-style: italic;
  transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: #888;
  transform: translateX(5px);
}

/* Select dropdown styling - Cross-browser compatible */
.form-group {
  position: relative;
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.8));
  padding-right: 3rem;
  position: relative;
  z-index: 1;
}

/* Custom dropdown arrow - only for form groups with select */
.form-group:has(select)::after,
.form-group.select-group::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #58d68d;
  pointer-events: none;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Arrow animation on focus - only for select form groups */
.form-group:has(select):focus-within::after,
.form-group.select-group:focus-within::after {
  border-top-color: #45b76a;
  transform: translateY(-50%) rotate(180deg);
}

/* Fallback for browsers that don't support :has() */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #58d68d;
  pointer-events: none;
  z-index: 2;
  transition: all 0.3s ease;
}

.select-wrapper:focus-within::after {
  border-top-color: #45b76a;
  transform: translateY(-50%) rotate(180deg);
}

/* Select option styling */
.form-group select option {
  background: #1a1a1a;
  color: #e0ffe0;
  padding: 0.75rem;
  border: none;
}

.form-group select option:checked,
.form-group select option:hover {
  background: #58d68d;
  color: #000;
}

/* Fix for Firefox */
@-moz-document url-prefix() {
  .form-group select {
    text-indent: 0.01px;
    text-overflow: '';
  }
}

/* Fix for IE/Edge */
.form-group select::-ms-expand {
  display: none;
}

/* Textarea specific styling */
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.6;
}

/* Floating label effect */
.form-group {
  position: relative;
}

.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group input:focus + label,
.form-group textarea:focus + label {
  transform: translateY(-2px);
  font-size: 0.9rem;
}

/* Submit button styling */
.contact-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #58d68d, #45b049);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Button hover effects */
.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(88, 214, 141, 0.4);
}

.contact-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(88, 214, 141, 0.3);
}

/* Loading state for button */
.contact-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.contact-btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success/Error states */
.form-group.success input,
.form-group.success textarea,
.form-group.success select {
  border-color: #58d68d;
  box-shadow: 0 0 10px rgba(88, 214, 141, 0.3);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

/* Error message styling */
.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

/* Enhanced notification system */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  color: white;
  font-weight: bold;
  z-index: 10000;
  animation: slideInRight 0.3s ease-out;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-success {
  background: linear-gradient(135deg, #58d68d, #45b049);
}

.notification-error {
  background: linear-gradient(135deg, #ff6b6b, #e55656);
}

.notification-info {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.notification button {
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.notification button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

@keyframes slideInRight {
  from { 
    transform: translateX(100%); 
    opacity: 0; 
  }
  to { 
    transform: translateX(0); 
    opacity: 1; 
  }
}

/* Mobile responsive design */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem;
  }
  
  .contact-form-container h3 {
    font-size: 1.6rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1rem;
  }
  
  .contact-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* ===== FOOTER SECTION ===== */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #1b1b1b;
  color: #999;
}


/* ===== 9. ANIMATIONS & KEYFRAMES ===== */
/* Professional animation system for enhanced user experience */
/* === FADE & SLIDE ANIMATIONS === */
/* Smooth entrance animations for page elements */

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideInDown {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
   
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* === INTERACTIVE ANIMATIONS === */
/* Hover effects and user interaction feedback */

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(10px) translateY(-10px);
  }
  66% {
    transform: translateX(-5px) translateY(5px);
  }
}

/* === VISUAL EFFECT ANIMATIONS === */
/* Glow effects, gradients, and special visual enhancements */

@keyframes glow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.2);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Zephyr rank signature pulsing green glow effect */
@keyframes pulsingGlow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(88, 214, 141, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(88, 214, 141, 0.6);
  }
}

/*
==================================================
END OF STYLES.CSS
==================================================
Project: Netherite SMP Website
Total Lines: 2100+
Sections: 11 major sections with comprehensive documentation
Last Updated: [Current Date]
Documented by: GitHub Copilot
==================================================
*/

/* ===== SHOP PAGE STYLING ===== */
/* Comprehensive shop design for purchasable ranks and cosmetics */

/* === SHOP HERO SECTION === */
.shop-hero {
  background-image: url('img/banner-shop.png'); 
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
}

.shop-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.shop-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #58d68d, #f3d427);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0ffe0;
}

.shop-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.shop-stats .stat-item {
  text-align: center;
  background: rgba(88, 214, 141, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(88, 214, 141, 0.3);
}

/* === SHOP RANKS GRID === */
.shop-ranks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 0 1rem;
}

.rank-package {
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(88, 214, 141, 0.2);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.rank-package::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.rank-package:hover::before {
  left: 100%;
}

.rank-package:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Popular badge */
.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #f3d427, #FFD700);
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 0 0 10px 10px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Package headers */
.package-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.rank-package .rank-icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 20px currentColor);
}

.rank-info h3 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  color: #58d68d;
}

.rank-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f3d427;
  margin-bottom: 0.5rem;
}

.rank-subtitle {
  color: #a0a0a0;
  font-size: 1rem;
}

/* Package features */
.package-features {
  margin-bottom: 2rem;
}

.package-features h4 {
  color: #58d68d;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  padding: 0.5rem 0;
  color: #e0ffe0;
  border-bottom: 1px solid rgba(88, 214, 141, 0.1);
  transition: all 0.3s ease;
}

.package-features li:hover {
  color: #58d68d;
  padding-left: 10px;
}

.package-features li:last-child {
  border-bottom: none;
}

/* Purchase buttons */
.purchase-btn {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spark-btn {
  background: linear-gradient(135deg, #58d68d, #45b049);
  color: white;
}

.stellar-btn {
  background: linear-gradient(135deg, #6c5ce7, #5a4fcf);
  color: white;
}

.champion-btn {
  background: linear-gradient(135deg, #f3d427, #e6c200);
  color: #1a1a1a;
}

.explorer-btn {
  background: linear-gradient(135deg, #ff6b6b, #e55656);
  color: white;
}

.purchase-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.package-note {
  text-align: center;
  margin-top: 1rem;
  color: #a0a0a0;
  font-style: italic;
}

/* Rank-specific hover effects */
.spark-package:hover {
  border-color: #58d68d;
  box-shadow: 0 0 30px rgba(88, 214, 141, 0.3);
}

.stellar-package:hover {
  border-color: #6c5ce7;
  box-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
}

.champion-package:hover {
  border-color: #f3d427;
  box-shadow: 0 0 30px rgba(243, 212, 39, 0.3);
}

.explorer-package:hover {
  border-color: #ff6b6b;
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

/* === COSMETIC ITEMS SECTION === */
.cosmetics-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.cosmetics-intro p {
  font-size: 1.2rem;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto;
}

.cosmetics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cosmetic-item {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(88, 214, 141, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.cosmetic-item:hover {
  transform: translateY(-5px);
  border-color: #58d68d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cosmetic-header {
  margin-bottom: 1rem;
}

.cosmetic-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px currentColor);
}

.cosmetic-item h3 {
  color: #58d68d;
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

.cosmetic-price {
  color: #f3d427;
  font-size: 1.3rem;
  font-weight: bold;
}

.cosmetic-item p {
  color: #e0ffe0;
  margin: 1rem 0;
  line-height: 1.6;
}

.cosmetic-btn {
  background: linear-gradient(135deg, #58d68d, #45b049);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cosmetic-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(88, 214, 141, 0.3);
}

/* === SHOP INFO SECTIONS === */
.shop-info-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.purchase-details, .payment-methods, .support-info {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(88, 214, 141, 0.2);
}

.purchase-details h3, .payment-methods h3, .support-info h3 {
  color: #58d68d;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.purchase-details ol {
  color: #e0ffe0;
  padding-left: 1.5rem;
}

.purchase-details li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-method {
  background: rgba(88, 214, 141, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(88, 214, 141, 0.3);
  color: #58d68d;
}

.support-methods {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.support-link {
  background: linear-gradient(135deg, #58d68d, #45b049);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.support-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(88, 214, 141, 0.3);
}

/* === FAQ SECTION === */
.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(88, 214, 141, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #58d68d;
  transform: translateX(10px);
}

.faq-item h3 {
  color: #58d68d;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.faq-item p {
  color: #e0ffe0;
  line-height: 1.6;
  margin: 0;
}

/* === RESPONSIVE DESIGN FOR SHOP === */
@media (max-width: 768px) {
  .shop-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .shop-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .shop-ranks-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  
  .package-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cosmetics-grid {
    grid-template-columns: 1fr;
  }
  
  .shop-info-content {
    grid-template-columns: 1fr;
  }
  
  .support-methods {
    flex-direction: column;
  }
}

/* Head of Department styling */
.member-department-title {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 0.9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0.5rem 0;
  padding: 0.3rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  background-color: rgba(255, 215, 0, 0.05);
  position: relative;
}

.member-department-title::before {
  content: '👑';
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

/* Head of Department constant outline styling */
.head-of-department {
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

/* Rank-specific constant outlines for Heads of Department */
.head-of-department.director-card {
  border-color: #FF5555;
  box-shadow: 0 0 20px rgba(255, 85, 85, 0.3);
}

.head-of-department.supervisor-card {
  border-color: #a01a7d;
  box-shadow: 0 0 20px rgba(160, 26, 125, 0.3);
}

.head-of-department.moderator-card {
  border-color: #FFAA00;
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
}

.head-of-department.entertainer-card {
  border-color: #55FFFF;
  box-shadow: 0 0 20px rgba(85, 255, 255, 0.3);
}

.head-of-department.builder-card {
  border-color: #FFFF55;
  box-shadow: 0 0 20px rgba(255, 255, 85, 0.3);
}

.head-of-department.developer-card {
  border-color: #05668d;
  box-shadow: 0 0 20px rgba(5, 102, 141, 0.3);
}

.head-of-department.supporter-card {
  border-color: #5555FF;
  box-shadow: 0 0 20px rgba(85, 85, 255, 0.3);
}

.head-of-department.admin-card {
  border-color: #a31621;
  box-shadow: 0 0 20px rgba(163, 22, 33, 0.3);
}

.head-of-department.junior-card {
  border-color: #55FF55;
  box-shadow: 0 0 20px rgba(85, 255, 85, 0.3);
}

/* Enhanced hover effect for Heads of Department */
.head-of-department:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Animated border pulse for Heads of Department */
.head-of-department::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 28px;
  border: 2px solid currentColor;
  opacity: 0.5;
  animation: borderPulse 3s infinite;
  pointer-events: none;
}

/* Director pulse animation */
.head-of-department.director-card::after {
  border-color: #FF5555;
}

.head-of-department.supervisor-card::after {
  border-color: #a01a7d;
}

.head-of-department.moderator-card::after {
  border-color: #FFAA00;
}

.head-of-department.entertainer-card::after {
  border-color: #55FFFF;
}

.head-of-department.builder-card::after {
  border-color: #FFFF55;
}

.head-of-department.developer-card::after {
  border-color: #05668d;
}

.head-of-department.supporter-card::after {
  border-color: #5555FF;
}

.head-of-department.admin-card::after {
  border-color: #a31621;
}

.head-of-department.junior-card::after {
  border-color: #55FF55;
}

/* Border pulse animation */
@keyframes borderPulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}




