/* Root Variables */
:root {
  --primary-color: 220 85% 57%; /* #4F46E5 */
  --secondary-color: 45 93% 58%; /* #F59E0B */
  --accent-color: 38 92% 50%; /* #EF4444 */
  --background-dark: 222 84% 5%; /* #0F0F0F */
  --background-blue: 225 39% 21%; /* #1E293B */
  --background-gold: 45 93% 58%; /* #F59E0B */
  --text-light: 0 0% 98%; /* #FAFAFA */
  --text-muted: 215 20% 65%; /* #94A3B8 */
  --border-color: 217 19% 27%; /* #334155 */
  --success-color: 142 76% 36%; /* #10B981 */
  --warning-color: 45 93% 58%; /* #F59E0B */
  --danger-color: 0 84% 60%; /* #EF4444 */
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, 
    hsl(var(--background-dark)) 0%, 
    hsl(var(--background-blue)) 50%, 
    hsl(var(--background-gold)) 100%);
  background-attachment: fixed;
  color: hsl(var(--text-light));
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: hsl(var(--text-muted));
}

/* Navigation */
.navbar {
  background: rgba(15, 15, 15, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

.navbar-logo {
  height: 45px;
  width: auto;
  max-width: 200px;
}

.brand-name {
  color: hsl(var(--text-light));
}

.brand-accent {
  color: hsl(var(--secondary-color));
}

.nav-link {
  color: hsl(var(--text-muted)) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--secondary-color)) !important;
  background: rgba(245, 158, 11, 0.1);
}

/* Buttons */
.btn {
  border-radius: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-outline-light {
  border: 2px solid hsl(var(--text-light));
  color: hsl(var(--text-light));
  background: transparent;
}

.btn-outline-light:hover {
  background: hsl(var(--text-light));
  color: hsl(var(--background-dark));
}

.btn-outline-primary {
  border: 2px solid hsl(var(--secondary-color));
  color: hsl(var(--secondary-color));
  background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
  background: hsl(var(--secondary-color));
  color: hsl(var(--background-dark));
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, hsl(var(--text-light)), hsl(var(--secondary-color)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: hsl(var(--secondary-color));
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  color: hsl(var(--text-muted));
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  margin-bottom: 2rem;
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
  max-width: 300px;
  margin-left: auto;
}

.floating-card i {
  font-size: 3rem;
  color: hsl(var(--secondary-color));
  margin-bottom: 1rem;
}

.floating-card h3 {
  color: hsl(var(--text-light));
  margin-bottom: 0.5rem;
}

.floating-card p {
  color: hsl(var(--text-muted));
  margin-bottom: 0;
}

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

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, hsl(var(--text-light)), hsl(var(--secondary-color)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.3rem;
  color: hsl(var(--text-muted));
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, hsl(var(--text-light)), hsl(var(--secondary-color)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Provider Grid */
.providers-section {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.provider-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.provider-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  transition: left 0.5s ease;
}

.provider-card:hover::before {
  left: 100%;
}

.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2);
  border-color: hsl(var(--secondary-color));
}

.provider-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(var(--secondary-color));
  text-transform: uppercase;
}

/* Feature Cards */
.feature-card,
.benefit-card,
.value-card,
.cert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.benefit-card:hover,
.value-card:hover,
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.2);
  border-color: hsl(var(--primary-color));
}

.feature-icon,
.benefit-icon,
.value-icon,
.cert-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

/* Game Cards */
.game-filters {
  margin-bottom: 3rem;
}

.game-filters .btn {
  margin: 0.25rem;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2);
}

.game-image {
  height: 200px;
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: hsl(var(--secondary-color));
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .play-overlay {
  opacity: 1;
}

.btn-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  border: none;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.btn-play:hover {
  transform: scale(1.1);
}

.game-info {
  padding: 1.5rem;
}

.game-info h5 {
  color: hsl(var(--text-light));
  margin-bottom: 0.5rem;
}

.game-info p {
  color: hsl(var(--text-muted));
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Agent Cards */
.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2);
  border-color: hsl(var(--secondary-color));
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.agent-main-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid hsl(var(--secondary-color));
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.agent-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.agent-title {
  color: hsl(var(--text-light));
  margin: 1rem 0;
  font-size: 2.5rem;
  font-weight: 800;
}

.agent-commission {
  font-size: 3rem;
  font-weight: 900;
  color: hsl(var(--secondary-color));
  margin: 1.5rem 0;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

/* Agent Tiers */
.agent-tier {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.agent-tier.featured {
  border-color: hsl(var(--secondary-color));
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
  transform: scale(1.05);
}

.agent-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.2);
}

.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.tier-header h3 {
  color: hsl(var(--text-light));
  margin-bottom: 1rem;
}

.tier-commission {
  font-size: 2rem;
  font-weight: 800;
  color: hsl(var(--secondary-color));
  margin-bottom: 2rem;
}

.tier-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.tier-features li {
  padding: 0.5rem 0;
  color: hsl(var(--text-muted));
}

.tier-features i {
  color: hsl(var(--success-color));
  margin-right: 0.5rem;
}

.tier-requirements {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}

.tier-requirements h5 {
  color: hsl(var(--secondary-color));
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h5 {
  color: hsl(var(--text-light));
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: hsl(var(--text-muted));
  margin-bottom: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: hsl(var(--text-light));
  padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: hsl(var(--secondary-color));
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
  color: hsl(var(--text-light));
}

.form-control::placeholder {
  color: hsl(var(--text-muted));
}

.form-label {
  color: hsl(var(--text-light));
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Stats */
.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: hsl(var(--secondary-color));
  display: block;
}

.stat-label {
  color: hsl(var(--text-muted));
  font-weight: 600;
}

/* Mission Cards */
.mission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.2);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

/* Team Cards */
.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.2);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.team-role {
  color: hsl(var(--secondary-color));
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 250px;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsl(var(--text-muted));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--text-muted));
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: hsl(var(--secondary-color));
  color: white;
  transform: translateY(-2px);
}

.footer-links h5 {
  color: hsl(var(--text-light));
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: hsl(var(--text-muted));
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: hsl(var(--secondary-color));
}

.payment-methods,
.security-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.payment-icon,
.security-badge {
  color: hsl(var(--text-muted));
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.security-badge {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-icon:hover,
.security-badge:hover {
  color: hsl(var(--secondary-color));
  background: rgba(245, 158, 11, 0.1);
}

.payment-title,
.security-title {
  color: hsl(var(--text-light));
  margin-bottom: 1rem;
  font-weight: 600;
}

.copyright-text {
  color: hsl(var(--text-muted));
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: hsl(var(--text-light));
  margin-bottom: 1rem;
}

.cta-section p {
  color: hsl(var(--text-muted));
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Modals */
.modal-content {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  color: hsl(var(--text-light));
}

.modal-body {
  color: hsl(var(--text-muted));
}

.btn-close {
  filter: invert(1);
}

/* Accordion */
.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

.accordion-button {
  background: transparent;
  color: hsl(var(--text-light));
  border: none;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: rgba(245, 158, 11, 0.1);
  color: hsl(var(--secondary-color));
  box-shadow: none;
}

.accordion-body {
  color: hsl(var(--text-muted));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Category Titles */
.category-title {
  color: hsl(var(--text-light));
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.category-title i {
  color: hsl(var(--secondary-color));
  margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .providers-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .provider-card {
    padding: 1.5rem;
  }
  
  .story-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .agent-tier.featured {
    transform: none;
  }
  
  .payment-methods,
  .security-badges {
    justify-content: center;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .hero-buttons {
    text-align: center;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .contact-item {
    text-align: center;
    flex-direction: column;
  }
  
  .contact-icon {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .providers-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card,
  .benefit-card,
  .value-card,
  .cert-card,
  .mission-card,
  .team-card {
    margin-bottom: 2rem;
  }
  
  .tier-commission {
    font-size: 1.5rem;
  }
  
  .floating-card {
    max-width: 250px;
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--text-light)), hsl(var(--secondary-color)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.border-gradient {
  border: 2px solid;
  border-image: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color))) 1;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}

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

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, hsl(var(--secondary-color)), hsl(var(--primary-color)));
}
