/* ============================================
   GAMESPLAYR - Zakhrafa Names Generator
   Professional CSS Styles
   ============================================ */

/* CSS Variables */
:root {
  --primary: #6c5ce7;
  --primary-dark: #5b4cdb;
  --secondary: #00cec9;
  --accent: #fd79a8;
  --dark: #2d3436;
  --darker: #1a1a2e;
  --light: #dfe6e9;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  --gradient-2: linear-gradient(135deg, #00cec9 0%, #81ecec 100%);
  --gradient-3: linear-gradient(135deg, #fd79a8 0%, #fab1a0 100%);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--darker);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 92, 231, 0.2);
  padding: 1rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  -webkit-text-fill-color: white;
}

.nav-desktop {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  border-radius: var(--radius-sm);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 206, 201, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(253, 121, 168, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.5;
  animation: float 15s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(108, 92, 231, 0.2);
  border: 1px solid rgba(108, 92, 231, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(108, 92, 231, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--light);
  opacity: 0.8;
}

/* ============================================
   GENERATOR SECTION
   ============================================ */
.generator-section {
  padding: 4rem 2rem;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-title span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.generator-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.name-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.2rem;
  border: 2px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-family: inherit;
  transition: var(--transition);
  text-align: center;
}

.name-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}

.name-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Game Selector */
.game-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.game-option {
  position: relative;
  padding: 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.game-option:hover {
  background: rgba(108, 92, 231, 0.1);
  border-color: rgba(108, 92, 231, 0.3);
  transform: translateY(-3px);
}

.game-option.active {
  background: rgba(108, 92, 231, 0.2);
  border-color: var(--primary);
}

.game-option input {
  position: absolute;
  opacity: 0;
}

.game-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.game-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Style Categories */
.style-categories {
  margin-bottom: 2rem;
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.category-tab {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 50px;
  color: var(--light);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.category-tab:hover {
  background: rgba(108, 92, 231, 0.2);
}

.category-tab.active {
  background: var(--gradient-1);
  color: var(--white);
}

/* Generate Button */
.generate-btn {
  width: 100%;
  padding: 1.3rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: inherit;
  background: var(--gradient-1);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.generate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.generate-btn:active {
  transform: translateY(0);
}

/* Results Section */
.results-section {
  margin-top: 2rem;
}

.results-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.result-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}

.result-card:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.result-text {
  font-size: 1.3rem;
  font-weight: 600;
  word-break: break-all;
}

.result-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(108, 92, 231, 0.2);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.action-btn:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.action-btn.copied {
  background: var(--secondary);
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
  padding: 5rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.game-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(108, 92, 231, 0.3);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.game-card-image.freefire { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); }
.game-card-image.pubg { background: linear-gradient(135deg, #feca57 0%, #ff9f43 100%); }
.game-card-image.roblox { background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%); }
.game-card-image.facebook { background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%); }
.game-card-image.tiktok { background: linear-gradient(135deg, #ff9ff3 0%, #f368e0 100%); }

.game-card-content {
  padding: 1.5rem;
}

.game-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.game-card-desc {
  color: var(--light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.game-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-1);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.game-card-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.articles-section {
  padding: 5rem 2rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.article-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(108, 92, 231, 0.3);
}

.article-image {
  height: 200px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.article-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.article-content {
  padding: 1.5rem;
}

.article-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(108, 92, 231, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.article-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-excerpt {
  color: var(--light);
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--light);
  opacity: 0.6;
}

/* ============================================
   ADS SECTION
   ============================================ */
.ads-section {
  padding: 2rem;
  text-align: center;
}

.ad-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-label {
  font-size: 0.75rem;
  color: var(--light);
  opacity: 0.5;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-desc {
  color: var(--light);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light);
  opacity: 0.8;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--light);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--darker);
  z-index: 1001;
  padding: 2rem;
  transition: var(--transition);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  margin-top: 3rem;
}

.mobile-nav-links li {
  margin-bottom: 1rem;
}

.mobile-nav-links a {
  display: block;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  background: rgba(108, 92, 231, 0.2);
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */
.article-page {
  padding-top: 100px;
  min-height: 100vh;
}

.article-header {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(0, 206, 201, 0.1) 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.article-header-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto 1rem;
}

.article-header-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--light);
  opacity: 0.8;
  flex-wrap: wrap;
}

.article-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.article-content-wrapper h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--primary);
}

.article-content-wrapper h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--secondary);
}

.article-content-wrapper p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--light);
}

.article-content-wrapper ul,
.article-content-wrapper ol {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.article-content-wrapper li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: var(--light);
}

.article-image-full {
  width: 100%;
  height: 300px;
  background: var(--gradient-1);
  border-radius: var(--radius);
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.article-tip {
  background: rgba(0, 206, 201, 0.1);
  border-right: 4px solid var(--secondary);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin: 2rem 0;
}

.article-tip-title {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 7rem 1rem 3rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .generator-card {
    padding: 1.5rem;
  }
  
  .game-selector {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    gap: 2rem;
  }
  
  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }
  
  .category-tab {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }
  
  .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .game-selector {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .result-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .result-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

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

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--secondary);
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
