/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 25 2025 | 19:08:46 */
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 2rem;
  color: #2d2d2d;
}

h1 {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
}

.channels-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1rem;
}

.channel-card1 {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 1 / 1;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.channel-card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.channel-logo {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}

.channel-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.channel-name {
  font-weight: 700;
  font-size: 1.3rem;
  color: #222;
  user-select: none;
}

/* Responsive layout tweaks */
@media (max-width: 960px) {
  .channels-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .channels-container {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .channel-card1 {
    padding: 1.5rem 1rem;
    aspect-ratio: auto;
  }
  .channel-logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 1rem;
  }
  .channel-name {
    font-size: 1.1rem;
  }
}
