/* Rebellious Coordinators Section Styles */
.coordinators-section {
  position: relative;
  padding-top: 20px; /* Reduced from 60px to 20px */
  overflow: hidden;
  background-color: #0a0a0a;
}

/* Rebellious Banner */
.rebel-banner {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0a4697; /* Blue color for visibility */
  color: white;
  padding: 0px 50px;
  transform: rotate(3deg) translateY(-5px) translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.rebel-text {
  font-family: 'GIAZA', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 0.8rem;
  line-height: 1;
  display: block;
  margin: 1px 0;
}

/* Rebellious Title */
.rebel-title-container {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.rebel-title {
  font-family: 'GIAZA', sans-serif;
  font-size: 2.5rem;
  color: #0a4697; /* Blue color for visibility as requested */
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 2;
  transform: rotate(-1deg);
  text-shadow: 1px 1px 0 rgba(255,255,255,0.1);
}

.rebel-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0a4697, #F3471F);
  z-index: 1;
}

/* Rebellious Subtitle */
.rebel-subtitle {
  font-size: 1.1rem;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.rebel-highlight {
  position: relative;
  color: #F3471F;
  font-weight: bold;
}

.rebel-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #F3471F;
}

/* Rebellious Styles for Coordinator Cards */
.coordinators-grid {
  position: relative;
  z-index: 2;
}

.coordinator-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible !important;
}

.coordinator-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 2px dashed #F3471F;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.coordinator-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

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

.coordinator-card:nth-child(odd):hover {
  transform: translateY(-10px) rotate(-1deg);
}

.coordinator-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coordinator-card:hover .coordinator-image-container::after {
  opacity: 1;
}

/* Anarchy Symbol Easter Egg */
.coordinators-section::after {
  content: 'Ⓐ';
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.1);
  transform: rotate(15deg);
}

/* Responsive Adjustments */
.desktop-only{display:block;}
.mobile-only{display:none;}
@media (max-width: 768px){
  .desktop-only{display:none !important;}
  .mobile-only{display:block !important;}
  .rebel-title {
    font-size: 2rem;
    color: #F3471F !important; /* Firecracker orange for mobile */
  }
  
  .rebel-banner {
    padding: 5px 30px;
    transform: rotate(2deg) translateY(-3px);
  }
}
