/* Footer Styles */
.pIlHzJ {
    background-color: #111;
    color: white;
    padding: 40px 0;
  }
  
  .IaTfmWdNj {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .ByLopZX {
    margin-bottom: 30px;
  }
  
  .ByLopZX img {
    height: 40px;
    width: auto;
  }
  
  .QezasPiHB {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .skxp {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .QezasPiHB a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .QezasPiHB a:hover {
    color: white;
  }
  
  .eQLkvP {
    color: #666;
    font-size: 12px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .eRUfjM {
      flex-direction: column;
    }
  
    .tpfMoRZuQ {
      width: 100%;
      height: 200px;
    }
  
    .skxp {
      gap: 15px;
    }
  
    .QezasPiHB a {
      font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .skxp {
      flex-direction: column;
      gap: 10px;
    }
  }




.featured-hero {
  margin-bottom: 35px;
}

.hero-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
  color: white;
}

.featured-tag {
  display: inline-block;
  background: linear-gradient(90deg, #3a7bd5, #00d2ff);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 600px;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  background-color: #3a7bd5;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
  background-color: #00d2ff;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}


.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

.views, .difficulty {
  display: flex;
  align-items: center;
}

.views::before {
  content: '馃憗锔�';
  margin-right: 5px;
}

.difficulty::before {
  content: '馃弳';
  margin-right: 5px;
}


.sidebar-subscribe {
  background: linear-gradient(135deg, #3a7bd5, #00d2ff);
  border-radius: 12px;
  padding: 25px;
  color: white;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-subscribe h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sidebar-subscribe p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: white;
  color: #3a7bd5;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.subscribe-form button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}


.toca-section {
  margin-top: 60px;
  padding-top: 45px;
  border-top: 1px solid #e1e4e8;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
}

.emoji-icon {
  margin-left: 12px;
  font-size: 22px;
}

.view-all {
  color: #3a7bd5;
  font-weight: 600;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.view-all:hover {
  color: #00d2ff;
  text-decoration: none;
  border-color: #3a7bd5;
  background-color: rgba(58, 123, 213, 0.05);
}

.toca-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.toca-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: white;
  height: 100%;
}

.toca-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.toca-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
}

.toca-card.large img {
  height: 300px;
}

.toca-card:hover img {
  transform: scale(1.05);
}

.toca-content {
  padding: 25px;
}

.toca-card.large .toca-content {
  padding: 30px;
}

.toca-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.4;
  color: #333;
}

.toca-card.large .toca-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.toca-card.large .toca-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}


.toca-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3a7bd5;
  color: white;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  margin-top: 10px;
}

.toca-btn:hover {
  background-color: #00d2ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e1e4e8;
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, #3a7bd5, #00d2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.footer-logo span {
  font-weight: 400;
  font-size: 20px;
}

.footer-logo p {
  color: #666;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column ul li a {
  color: #666;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-column ul li a:hover {
  color: #3a7bd5;
}

.social-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links li a svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e1e4e8;
  color: #666;
  font-size: 14px;
}


@media (max-width: 1024px) {
  .hero-card img {
    height: 350px;
  }
  
  .hero-content h2 {
    font-size: 28px;
  }
  
  .toca-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .hero-card img {
    height: 300px;
  }
  
  .hero-content {
    padding: 25px;
  }
  
  .hero-content h2 {
    font-size: 24px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .toca-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 25px;
  }
}


.UpxSXCkvCM h1 span {
  font-weight: 300;
  font-size: 22px;
  opacity: 0.8;
}


header.scroll-shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


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

.hero-card,
.QOGnqJzM,
.tZifbqevu,
.LWquQjCVW,
.toca-card {
  /* opacity: 0; */
  transform: translateY(20px);
}

.hero-card.loaded,
.QOGnqJzM.loaded,
.tZifbqevu.loaded,
.LWquQjCVW.loaded,
.toca-card.loaded {
  animation: fadeUp 0.5s ease forwards;
}


.QOGnqJzM:nth-child(2),
.tZifbqevu:nth-child(2),
.LWquQjCVW:nth-child(2) {
  animation-delay: 0.1s;
}

.QOGnqJzM:nth-child(3),
.tZifbqevu:nth-child(3),
.LWquQjCVW:nth-child(3) {
  animation-delay: 0.2s;
}

.QOGnqJzM:nth-child(4),
.tZifbqevu:nth-child(4),
.LWquQjCVW:nth-child(4) {
  animation-delay: 0.3s;
}


.hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.2), rgba(0, 210, 255, 0.2));
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-card:hover::after {
  opacity: 1;
}


.hero-btn:active,
.subscribe-form button:active {
  transform: scale(0.95);
}

.card-meta {
  transition: color 0.3s;
}

.QOGnqJzM:hover .card-meta {
  color: #3a7bd5;
}


.toca-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.5s;
  z-index: 1;
}

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


.QOGnqJzM,
.tZifbqevu,
.LWquQjCVW,
.toca-card,
.hero-card {
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
}


.featured-tag {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 123, 213, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(58, 123, 213, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(58, 123, 213, 0);
  }
}


.toca-recommendations {
  margin-top: 40px;
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recommendations-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.recommendations-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3a7bd5, #00d2ff);
  border-radius: 3px;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 20px;
}

.recommendation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
}

.recommendation-item:hover {
  transform: translateY(-5px);
}

.recommendation-item img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
  transition: all 0.3s;
}

.recommendation-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  border-color: #3a7bd5;
}

.recommendation-item span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s;
}

.recommendation-item:hover span {
  color: #3a7bd5;
}


@media (max-width: 1024px) {
  .recommendations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-card img {
    height: 350px;
  }
  
  .hero-content h2 {
    font-size: 28px;
  }
  
  .toca-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .recommendations-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  
  .hero-card img {
    height: 300px;
  }
  
  .hero-content {
    padding: 25px;
  }
  
  .hero-content h2 {
    font-size: 24px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .toca-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .toca-recommendations {
    padding: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 25px;
  }
}