/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  
  .featured-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: flex-end;
  }
  
  .slider-item.active {
    opacity: 1;
    z-index: 1;
  }
  
  .slider-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slider-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    color: white;
  }
  
  .featured-tag {
    display: inline-block;
    background-color: #3a7bd5;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .slider-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
  }
  
  .slider-content p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 600px;
    opacity: 0.9;
  }
  
  .slider-btn {
    display: inline-block;
    background-color: #3a7bd5;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .slider-btn:hover {
    background-color: white;
    color: #3a7bd5;
    transform: translateY(-3px);
  }
  
  
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .slider-arrow.prev {
    left: 20px;
  }
  
  .slider-arrow.next {
    right: 20px;
  }
  
  .slider-arrow svg {
    width: 24px;
    height: 24px;
  }
  
  
  .slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background-color: white;
    transform: scale(1.2);
  }
  
  
  @media (max-width: 768px) {
    .featured-slider {
      height: 350px;
    }
    
    .slider-content {
      padding: 20px;
    }
    
    .slider-content h2 {
      font-size: 24px;
    }
    
    .slider-arrow {
      width: 40px;
      height: 40px;
    }
  }
  
  @media (max-width: 576px) {
    .featured-slider {
      height: 300px;
    }
    
    .slider-content h2 {
      font-size: 20px;
    }
    
    .slider-content p {
      font-size: 14px;
      margin-bottom: 15px;
    }
    
    .slider-btn {
      padding: 8px 18px;
      font-size: 14px;
    }
  }
  
  
  .TaxgNLp {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
  }
  
  .nuBnWg,
  .NpDmJxbH,
  .yduqm {
    width: 100%;
  }
  
  
  .nuBnWg {
    margin-bottom: 30px;
  }
  
  .nuBnWg .cxcZSmh {
    margin-bottom: 20px;
  }
  
  .trending-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
  
  .QOGnqJzM {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
  }
  
  .QOGnqJzM:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  /* .QOGnqJzM:first-child {
    grid-column: span 2;
    grid-row: span 2;
  } */
  
  
  .cxcZSmh {
    position: relative;
    padding: 0 0 15px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #e1e4e8;
  }
  
  .cxcZSmh h2 {
    font-size: 22px;
    font-weight: 700;
    color: #3a7bd5;
    position: relative;
    display: inline-block;
  }
  
  .cxcZSmh h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
  }
  
  
  .mbyoG {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }
  
  
  .personality-tag {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background-color: #3a7bd5;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 2;
  }
  
  
  .XCLRFsjRPf img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .QOGnqJzM:hover img {
    transform: scale(1.05);
  }
  
  
  .LmVnBNl {
    padding: 20px;
    background-color: white;
  }
  
  
  .card-meta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 13px;
    color: #666;
  }
  
  .views, .difficulty {
    display: flex;
    align-items: center;
  }
  
  .views::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233a7bd5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle></svg>') no-repeat center;
    margin-right: 5px;
  }
  
  .difficulty::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233a7bd5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>') no-repeat center;
    margin-right: 5px;
  }
  
  
  .ykOmbo {
    font-size: 12px;
    color: #3a7bd5;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
  }
  
  
  .LmVnBNl h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .QOGnqJzM:first-child .LmVnBNl h3 {
    font-size: 20px;
  }
  
  
  .featured-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .featured-content .mbAPHt {
    grid-column: span 3;
    margin-bottom: 20px;
  }
  
  .mbAPHt {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    padding: 30px;
    color: white;
    transition: transform 0.3s;
  }
  
  .mbAPHt:hover {
    transform: translateY(-5px);
  }
  
  .mbAPHt .ykOmbo {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .mbAPHt h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .GRgQHtnqg {
    margin-top: 20px;
  }
  
  .GRgQHtnqg a {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .GRgQHtnqg a:hover {
    background-color: white;
    color: #3a7bd5;
    transform: translateY(-3px);
  }
  
  
  .tZifbqevu {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .tZifbqevu:hover {
    transform: translateY(-5px);
  }
  
  .tZifbqevu img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .tZifbqevu:hover img {
    transform: scale(1.05);
  }
  
  .dKiOCqUc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    color: white;
  }
  
  .dKiOCqUc .ykOmbo {
    color: #00d2ff;
  }
  
  .dKiOCqUc h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 5px;
  }
  
  
  .recommendations-section {
    width: 100%;
  }
  
  .recommendations-section .cxcZSmh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .tabs-container {
    display: flex;
    gap: 10px;
  }
  
  .JsSZaIs {
    padding: 8px 16px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
    border-radius: 20px;
  }
  
  .JsSZaIs:hover {
    color: #3a7bd5;
    background-color: rgba(58, 123, 213, 0.05);
  }
  
  .JsSZaIs.BQmpRVJH {
    background-color: #3a7bd5;
    color: white;
  }
  
  
  .recommendations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .cRdeyYpQ {
    position: relative;
    display: flex;
    gap: 15px;
    padding: 10px 10px 10px 45px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    overflow: hidden;
  }
  
  .cRdeyYpQ:hover {
    background-color: #f5f7fa;
  }
  
  .cRdeyYpQ img {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .cRdeyYpQ .dKiOCqUc {
    position: static;
    background: none;
    padding: 15px;
    color: #333;
  }
  
  .cRdeyYpQ .ykOmbo {
    color: #3a7bd5;
  }
  
  .cRdeyYpQ h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
  }
  
  
  .subscribe-section {
    width: 100%;
    background-color: #f5f7fa;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
  }
  
  .subscribe-content {
    max-width: 60%;
  }
  
  .subscribe-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .subscribe-content p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 500px;
  }
  
  .subscribe-form {
    display: flex;
    gap: 10px;
  }
  
  .subscribe-form input {
    flex: 1;
    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 20px;
    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);
  }
  
  
  @media (max-width: 1200px) {
    .trending-flow {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 900px) {
    .trending-flow {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .trending-flow {
      grid-template-columns: 1fr;
    }
    
    .QOGnqJzM:first-child {
      grid-column: auto;
      grid-row: auto;
    }
    
    .QOGnqJzM:first-child .XCLRFsjRPf img {
      height: 200px;
    }
    
    .QOGnqJzM .XCLRFsjRPf img {
      height: 180px;
    }
    
   
    .mbyoG {
      width: 30px;
      height: 30px;
      font-size: 14px;
      top: 10px;
      left: 10px;
      z-index: 3;
    }
    
   
    .LmVnBNl {
      padding: 15px;
    }
    
    .LmVnBNl h3 {
      font-size: 15px;
      margin-bottom: 5px;
    }
    
    .card-meta {
      flex-direction: row;
      gap: 10px;
      font-size: 12px;
    }
    
    
    .personality-tag {
      width: 30px;
      font-size: 12px;
      letter-spacing: 1px;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      z-index: 2;
    }
    
    
    .cRdeyYpQ {
      padding: 10px 10px 10px 40px;
    }
    
    .cRdeyYpQ img {
      width: 80px;
      height: 60px;
    }
    
    .cRdeyYpQ .dKiOCqUc {
      position: static;
      background: none;
      padding: 0 0 0 10px;
      color: #333;
    }
    
    .cRdeyYpQ .dKiOCqUc h4 {
      font-size: 12px;
      margin-top: 5px;
    }
  }
  
  @media (max-width: 768px) {
    .recommendations-grid {
      grid-template-columns: 1fr;
    }
    
    .subscribe-section {
      flex-direction: column;
      text-align: center;
    }
    
    .subscribe-content {
      max-width: 100%;
      margin-bottom: 20px;
    }
  }
  
  /* Quiz Cards */
  .VIZXmi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .LWquQjCVW {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .LWquQjCVW:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .LWquQjCVW img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .LWquQjCVW:hover img {
    transform: scale(1.05);
  }
  
  .vLOXpU {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    color: white;
    transition: background 0.3s;
  }
  
  .LWquQjCVW:hover .vLOXpU {
    background: linear-gradient(to top, rgba(58, 123, 213, 0.8), rgba(0, 210, 255, 0.4), transparent);
  }
  
  .mbAPHt {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    padding: 25px;
    color: white;
    transition: transform 0.3s;
  }
  
  .mbAPHt:hover {
    transform: translateY(-5px);
  }
  
  .mbAPHt .ykOmbo {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .mbAPHt h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .GRgQHtnqg {
    margin-top: 20px;
  }
  
  .GRgQHtnqg a {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .GRgQHtnqg a:hover {
    background-color: white;
    color: #3a7bd5;
    transform: translateY(-3px);
  }
  
  @media (max-width: 1024px) {
    .VIZXmi {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .VIZXmi {
      grid-template-columns: 1fr;
    }
  }
  
  /* Kids Games Section */
  .ioPsWwpZYC {
    margin-top: 40px;
    padding: 20px 0;
  }
  
  .qqiZTORnS {
    background-color: #ff3399;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border-radius: 0 5px 5px 0;
    margin-bottom: 20px;
  }
  
  .qqiZTORnS h2 {
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .cruiJw {
    font-size: 14px;
  }
  
  .VIZXmi.GvLBtq {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .LWquQjCVW.GeNYzuNMx img {
    height: 250px;
  }
  
  .GRgQHtnqg {
    text-align: center;
    margin-top: 30px;
  }
  
  .GRgQHtnqg a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: 2px solid #ff3399;
    border-radius: 5px;
    color: #ff3399;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .GRgQHtnqg a:hover {
    background-color: #ff3399;
    color: white;
  }
  
  .HapVRNDgS {
    font-size: 18px;
  }
  
  /* Personality Section Styles */
  .nYKpBmn {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }
  
  .qnFZCfpV {
    background-color: #ff3399;
    margin-bottom: 20px;
  }
  
  .qnFZCfpV h2 {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .LlwqGEM {
    font-size: 14px;
  }
  
  .KFkxaVEG {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  /* Carousel Styles */
  .tFhscB {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .FFlZGmw {
    position: relative;
    width: 100%;
    height: 400px;
  }
  
  .WauZar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .WauZar.BQmpRVJH {
    opacity: 1;
  }
  
  .WauZar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .meIo {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
  }
  
  .PQkkGoEfVM {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
  }
  
  .PQkkGoEfVM:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .PQkkGoEfVM.vyZEuMLs {
    left: 10px;
  }
  
  .PQkkGoEfVM.hKUKgcxhp {
    right: 10px;
  }
  
  .JqOJDQN {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
  }
  
  .JqOJDQN .ykOmbo {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 8px;
    display: block;
  }
  
  .JqOJDQN h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
  }
  
  /* Article List Styles */
  .bUkx {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .WyBEuTtv {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .iYxmKCjo {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 80px;
  }
  
  .iYxmKCjo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .sPBAV {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #22cc88;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
  }
  
  .fzvU {
    flex-grow: 1;
  }
  
  .fzvU .ykOmbo {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    display: block;
  }
  
  .fzvU h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #333;
  }
  
  /* More Button Styles */
  .OhEgMq {
    text-align: center;
    margin-top: 30px;
  }
  
  .OhEgMq a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: 2px solid #ff3399;
    border-radius: 5px;
    color: #ff3399;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .OhEgMq a:hover {
    background-color: #ff3399;
    color: white;
  }
  
  /* Movies Section Styles */
  .sIZDK {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }
  
  .dCkBVAwnC {
    background-color: #ff3399;
    margin-bottom: 20px;
  }
  
  .dCkBVAwnC h2 {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .xzgf {
    font-size: 14px;
  }
  
  
  .wHeIH {
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  
  
  .lPGrF {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  
  .UzMO {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .cWPtLbuYk {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .cWPtLbuYk:hover {
    transform: translateY(-5px);
  }
  
  .cWPtLbuYk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .cWPtLbuYk.GeNYzuNMx {
    height: 400px;
  }
  
  .cWPtLbuYk.zBPmVx {
    height: 250px;
  }
  
  .gwuQm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #33ccff;
    color: white;
    padding: 8px 15px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
  }
  
  .sPBAV {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #22cc88;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
  }
  
  .fvoc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
  }
  
  .fvoc .ykOmbo {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 8px;
    display: block;
  }
  
  .fvoc h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }
  
  .cWPtLbuYk.GeNYzuNMx .fvoc h3 {
    font-size: 24px;
  }
  
  /* More Button Styles */
  .OhEgMq {
    text-align: center;
    margin-top: 30px;
  }
  
  .OhEgMq a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: 2px solid #ff3399;
    border-radius: 5px;
    color: #ff3399;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .OhEgMq a:hover {
    background-color: #ff3399;
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .KFkxaVEG {
      grid-template-columns: 1fr;
    }
  
    .FFlZGmw {
      height: 300px;
    }
    .wHeIH {
      grid-template-columns: 1fr 1fr;
    }
  
    .cWPtLbuYk.GeNYzuNMx {
      height: 300px;
    }
    .UzMO {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .cWPtLbuYk.GeNYzuNMx {
      height: 300px;
    }
  
    .cWPtLbuYk.zBPmVx {
      height: 200px;
    }
  }
  
  @media (max-width: 768px) {
    .FFlZGmw {
      height: 250px;
    }
  
    .JqOJDQN h3 {
      font-size: 20px;
    }
    .wHeIH {
      grid-template-columns: 1fr;
    }
  
    .cWPtLbuYk.GeNYzuNMx {
      height: 250px;
    }
  
    .gwuQm {
      font-size: 20px;
    }
  
    .fvoc h3 {
      font-size: 16px;
    }
  
    .cWPtLbuYk.GeNYzuNMx .fvoc h3 {
      font-size: 20px;
    }
    .lPGrF {
      grid-template-columns: 1fr;
    }
  
    .UzMO {
      grid-template-columns: 1fr;
    }
  
    .cWPtLbuYk.GeNYzuNMx {
      height: 250px;
    }
  
    .cWPtLbuYk.zBPmVx {
      height: 200px;
    }
  }
  
  /* --------- */
  
  /* More Section Styles */
  .gagULzx {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }
  
  .SsWtlVBx {
    background-color: #ff3399;
    margin-bottom: 20px;
  }
  
  .SsWtlVBx h2 {
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 15px;
  }
  
  .OVZzOgxkMH {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .eRUfjM {
    display: flex;
    gap: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .eRUfjM:hover {
    transform: translateY(-5px);
  }
  
  .tpfMoRZuQ {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .tpfMoRZuQ img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .VfntwdFOS {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .VfntwdFOS .ykOmbo {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
  }
  
  .VfntwdFOS h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
  }
  
  .LtBVJWH {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: white;
    border: 2px solid #ff3399;
    border-radius: 5px;
    color: #ff3399;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
  }
  
  .LtBVJWH:hover {
    background-color: #ff3399;
    color: white;
  }
  
  .advertisement {
    text-align: center;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 40px;
  }
  
  .advertisement span {
    color: #999;
    font-size: 14px;
  }
  
  
  .toca-section {
    margin: 40px 0;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .view-all {
    color: #3a7bd5;
    font-weight: 500;
    text-decoration: none;
  }
  
  .toca-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .toca-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  .toca-content {
    padding: 20px;
  }
  
  .toca-btn {
    display: inline-block;
    background-color: #3a7bd5;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
  }
  
  .toca-recommendations {
    margin-top: 30px;
  }
  
  .recommendations-title {
    margin-bottom: 15px;
  }
  
  .recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .recommendation-item {
    text-align: center;
    text-decoration: none;
    color: #333;
  }
  
  .recommendation-item img {
    border-radius: 10px;
    margin-bottom: 8px;
  }
  
  @media (max-width: 992px) {
    .toca-grid {
      grid-template-columns: 1fr;
    }
    
    .recommendations-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    main{
      padding: 0;
    }
    .featured-content .tZifbqevu{
      grid-column: span 3;
    }
  
  }
  
  @media (max-width: 576px) {
    .recommendations-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  
  .personality-tag {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background-color: #3a7bd5;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 2;
  }
  
  
  .cRdeyYpQ {
    position: relative;
    display: flex;
    gap: 15px;
    padding: 10px 10px 10px 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    overflow: hidden;
  }
  
  .cRdeyYpQ:hover {
    background-color: #f5f7fa;
  }
  
  .cRdeyYpQ img {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 6px;
  }
  
  @media (max-width: 768px) {
  
    .cRdeyYpQ {
      padding: 10px 10px 10px 40px;
    }
    
    .personality-tag {
      width: 30px;
      font-size: 12px;
      letter-spacing: 1px;
    }
    
    .cRdeyYpQ img {
      width: 80px;
      height: 60px;
    }
  }
  
  @media (max-width: 480px) {
  
    .cRdeyYpQ {
      padding: 8px 8px 8px 8px;
      gap: 10px;
    }
    
    .personality-tag {
      width: 28px;
      font-size: 10px;
      letter-spacing: 0;
    }
    
    .cRdeyYpQ img {
      width: 70px;
      height: 53px;
    }
    
    .cRdeyYpQ .dKiOCqUc h4 {
      font-size: 11px;
      line-height: 1.2;
      margin: 3px 0 0;
    }
  }
  