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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(218, 165, 32, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #0a0a0a 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23daa520' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #daa520;
  border-radius: 50%;
  opacity: 0.6;
  animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
  0%,
  100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(218, 165, 32, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #b8860b;
}

.logo-link {
  text-decoration: none;
}

.cougar-icon {
  width: 40px;
  height: 40px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(218, 165, 32, 0.8), 0 0 40px rgba(218, 165, 32, 0.3);
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #daa520;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-links a:hover {
  color: #1a1a1a;
  background: linear-gradient(135deg, #daa520, #b8860b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #b8860b, #daa520);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-outline {
  color: #b8860b;
  border: 2px solid #b8860b;
  background: transparent;
}

.btn-outline:hover {
  background: #b8860b;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #b8860b, #daa520);
  color: #1a1a1a;
  border: 2px solid transparent;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.6);
  filter: brightness(1.1);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(218, 165, 32, 0.3) 0%, transparent 70%),
    radial-gradient(circle at 70% 60%, rgba(184, 134, 11, 0.2) 0%, transparent 70%);
  animation: hero-bg-move 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes hero-bg-move {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  33% {
    transform: rotate(120deg) scale(1.1);
  }
  66% {
    transform: rotate(240deg) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 50%, #daa520 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: gradient-shift 4s ease-in-out infinite, text-glow 3s ease-in-out infinite;
  position: relative;
}

.hero h1::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  animation: bounce-cougar 2s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes text-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.8)) drop-shadow(0 0 30px rgba(218, 165, 32, 0.3));
  }
}

@keyframes bounce-cougar {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(5deg);
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  backdrop-filter: blur(20px);
  padding: 4rem 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  border-radius: 40px 40px 0 0;
  border: 1px solid rgba(218, 165, 32, 0.2);
  box-shadow: 0 -10px 40px rgba(218, 165, 32, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.4), transparent);
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(218, 165, 32, 0.3);
  border-color: #daa520;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #b8860b;
  display: block;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #daa520, #b8860b, #daa520);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: -200% 0;
  }
  50% {
    background-position: 200% 0;
  }
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(218, 165, 32, 0.25);
  border-color: #daa520;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #daa520, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #1a1a1a;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #daa520, transparent, #b8860b, transparent, #daa520);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: icon-rotate 4s linear infinite;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(218, 165, 32, 0.5);
}

@keyframes icon-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
}

/* Quick Links */
.quick-links {
  background: radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #daa520;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quick-links::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23daa520' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  animation: bg-move 30s linear infinite;
}

@keyframes bg-move {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-20px) translateY(-10px);
  }
  50% {
    transform: translateX(-10px) translateY(-20px);
  }
  75% {
    transform: translateX(10px) translateY(-10px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.link-category {
  background: rgba(218, 165, 32, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.link-category::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #daa520, transparent, #b8860b, transparent);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: border-glow 3s ease-in-out infinite;
}

.link-category:hover::before {
  opacity: 1;
}

.link-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

@keyframes border-glow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

.link-category h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #daa520;
}

.link-category ul {
  list-style: none;
}

.link-category li {
  margin-bottom: 0.8rem;
}

.link-category a {
  color: rgba(218, 165, 32, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.link-category a:hover {
  color: #daa520;
  transform: translateX(5px);
}

/* Footer */
footer {
  background: #0a0a0a;
  color: #daa520;
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(218, 165, 32, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #daa520;
}

.copyright {
  color: rgba(218, 165, 32, 0.6);
  font-size: 0.9rem;
}

/* Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #daa520;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: #b8860b;
  transform: scale(1.1);
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #daa520;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.mobile-nav-links li {
  margin: 1.5rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.mobile-nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-nav-links li:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-nav-links li:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-nav-links li:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-nav-links li:nth-child(5) {
  animation-delay: 0.5s;
}
.mobile-nav-links li:nth-child(6) {
  animation-delay: 0.6s;
}
.mobile-nav-links li:nth-child(7) {
  animation-delay: 0.7s;
}

.mobile-nav-links a {
  color: #daa520;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
}

.mobile-nav-links a:hover {
  color: #b8860b;
  transform: scale(1.1);
}

.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.mobile-auth-buttons .btn {
  width: 200px;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  nav {
    padding: 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .cougar-icon {
    width: 35px;
    height: 35px;
  }

  .nav-links {
    display: none;
  }

  .auth-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h1::before {
    top: -40px;
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .btn-hero {
    width: 100%;
    max-width: 250px;
  }

  .stats {
    padding: 3rem 0;
    margin-top: -30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .features {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .quick-links {
    padding: 3rem 0;
  }

  .links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .link-category {
    padding: 1.5rem;
  }

  footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .copyright {
    font-size: 0.85rem;
    text-align: center;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .toast-container {
    top: 80px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Toast Messages */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.toast {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(218, 165, 32, 0.2);
  animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast.toast-hiding {
  animation: slideOutRight 0.3s ease-out forwards;
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
}

.toast-success {
  border-color: rgba(34, 197, 94, 0.3);
}

.toast-success .toast-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.toast-error {
  border-color: rgba(239, 68, 68, 0.3);
}

.toast-error .toast-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.toast-warning {
  border-color: rgba(251, 191, 36, 0.3);
}

.toast-warning .toast-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.toast-info {
  border-color: rgba(59, 130, 246, 0.3);
}

.toast-info .toast-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

/* UnionHigh special toast - for important messages */
.toast-cougar {
  border-color: rgba(218, 165, 32, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 220, 0.95));
}

.toast-cougar .toast-icon {
  background: linear-gradient(135deg, #daa520, #b8860b);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(218, 165, 32, 0.5);
  animation: cougar-glow 2s ease-in-out infinite;
}

@keyframes cougar-glow {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.5);
  }
  50% {
    box-shadow: 0 6px 30px rgba(218, 165, 32, 0.8);
  }
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-message {
  color: #1e293b;
  font-size: 0.95rem;
  line-height: 1.5;
  word-wrap: break-word;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem 0;
  color: #64748b;
  transition: all 0.2s ease;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.6;
}

.toast-close:hover {
  opacity: 1;
  color: #1e293b;
  transform: scale(1.1);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(135deg, #daa520, #b8860b);
  animation: progress 5s linear forwards;
  transform-origin: left;
}

@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast-container {
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .toast {
    padding: 1rem;
  }

  .toast-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
}
