/* ArmIPTV Custom Modern UI Styles */

.sticky-top {
  z-index: 1030;
}

/* Language Switcher Styling */
.btn-group-sm .btn {
  padding: 0.25rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 20px !important;
}

.btn-group-sm .btn-primary {
  background-color: #3f78e0;
  border-color: #3f78e0;
  color: #ffffff;
}

.btn-group-sm .btn-outline-primary {
  color: #3f78e0;
  border-color: #3f78e0;
}

.btn-group-sm .btn-outline-primary:hover {
  background-color: #3f78e0;
  color: #ffffff;
}

/* Contact Card Enhancements */
.contact-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 12px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(30, 34, 40, 0.08) !important;
}

.icon-box-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  font-size: 1.5rem;
}

/* Form Styling */
.form-control:focus,
.form-select:focus {
  border-color: #3f78e0;
  box-shadow: 0 0 0 0.2rem rgba(63, 120, 224, 0.15);
}

/* Honeypot field (hidden from humans) */
.hp-field {
  display: none !important;
  visibility: hidden !important;
}

/* Code & Playlist copy snippet */
.playlist-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  font-family: monospace;
  word-break: break-all;
}

/* Smooth Transitions */
.alert {
  border-radius: 8px;
}

/* Popular Armenian Channels Section Styling */
#armchannels {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

#armchannels .channel-card {
  border-radius: 12px;
  background: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(30, 34, 40, 0.04) !important;
}

#armchannels .channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(63, 120, 224, 0.12) !important;
  border-color: rgba(63, 120, 224, 0.3);
}

#armchannels .channel-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
  transition: transform 0.25s ease;
}

#armchannels .channel-card:hover .channel-logo {
  transform: scale(1.05);
}