:root {
  /* E-sports Color Palette - 5 primary colors + shades */
  --primary-electric: #03ffe8;
  --primary-neon: #59ff0c;
  --primary-purple: #7725e7;
  --primary-orange: #ff8f0e;
  --primary-pink: #ff1998;
  
  /* Light shades */
  --electric-light: #66f7ee;
  --neon-light: #5dff48;
  --purple-light: #b36feb;
  --orange-light: #f09062;
  --pink-light: #ff5a97;
  
  /* Dark shades */
  --electric-dark: #00e3df;
  --neon-dark: #0fa104;
  --purple-dark: #8027a1;
  --orange-dark: #b44011;
  --pink-dark: #c2228d;
  
  /* Neutral colors */
  --bg-dark: #0a0a0a;
  --bg-secondary: #1e1e1e;
  --text-light: #ffffff;
  --text-secondary: #c9c1bf;
  --text-accent: #f0f0f0;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-electric);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../DAT_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.hero-text {
  color: var(--text-light);
}

.hero-title {
  color: var(--primary-electric);
  text-shadow: 0 0 20px rgba(2, 232, 226, 0.30);
    padding-top: 125px;
}

.hero-accent {
  color: var(--primary-neon);
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-purple);
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-orange);
  bottom: 20%;
  left: 15%;
  animation-delay: -4s;
}

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

/* Section Styling */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  color: var(--primary-electric);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-neon);
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 253, 255, 0.20);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 243, 0.20);
}

.card-title {
  color: var(--primary-electric);
}

.card-text {
  color: var(--text-secondary);
}

/* Services */
.service-card {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-neon);
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
}

.service-features li:before {
  content: 'âœ“';
  color: var(--primary-neon);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--primary-electric);
  margin: 0 auto 1rem;
  display: block;
  object-fit: cover;
}

.team-name {
  color: var(--primary-electric);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-neon);
  font-size: 0.9rem;
}

/* Reviews */
.review-card {
  border-left: 4px solid var(--primary-neon);
  background: var(--bg-secondary);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-author {
  color: var(--primary-electric);
  font-weight: 600;
  margin-top: 1rem;
}

/* FAQ */
.faq-card {
  margin-bottom: 1rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(169, 40, 240, 0.30);
}

.faq-question {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Contact Form */
.form-control {
  background: var(--bg-secondary);
  border: 1px solid rgba(7, 234, 247, 0.30);
  color: var(--text-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  background: var(--bg-secondary);
  border-color: var(--primary-electric);
  box-shadow: 0 0 0 0.25rem rgba(0, 196, 231, 0.25);
  color: var(--text-light);
}

.form-control::placeholder {
  color: var(--text-secondary);
  opacity: 0.8;
}

.form-label {
  color: var(--primary-electric);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-check-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-check-input {
  margin-top: 0.25rem;
  border: 1px solid var(--primary-electric);
}

.form-check-input:checked {
  background-color: var(--primary-electric);
  border-color: var(--primary-electric);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-electric), var(--primary-neon));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.40);
}

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 246, 255, 0.10);
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-electric);
}

/* Footer - High contrast colors only, no gradients */
.footer {
  background: var(--bg-dark);
  border-top: 2px solid var(--primary-electric);
  padding: 3rem 0 1rem;
  color: var(--text-light);
}

.footer h5 {
  color: var(--primary-electric);
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--primary-neon);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--primary-neon);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5rem;
  bottom: -1rem;
  width: 2px;
  background: rgba(9, 243, 10, 0.30);
}

.timeline-item:last-child::after {
  display: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Focus improvements for keyboard navigation */
@media (any-hover: none) {
  .card:focus-within {
    outline: 2px solid var(--primary-electric);
    outline-offset: 2px;
  }
  
  .btn:focus {
    outline: 2px solid var(--primary-neon);
    outline-offset: 2px;
  }
}

/* Improve readability of unordered lists */
ul {
  color: var(--text-light);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.service-features {
  list-style: none;
  padding-left: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  display: block;
}

.service-features li:before {
  content: '✓';
  color: var(--primary-neon);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* Container max-width adjustments */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
}
