/* Landscape Layout - Vertical Stack */
    .januari {
      padding: 20px;
      background: linear-gradient(135deg, #ffffffff 0%, #ffffffff 50%, #ffffffff 100%);
      min-height: 100vh;
    }

    .events-stack {
      display: flex;
      flex-direction: column;
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .col-1 {
      perspective: 1000px;
      width: 100%;
    }

    .card {
      background: linear-gradient(145deg, #1c1c1c, #2e2e2e);
      border-radius: 20px;
      padding: 30px;
      color: #fff;
      box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      gap: 30px;
      min-height: 250px;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .card:hover::before {
      left: 100%;
    }

    .card:hover {
      transform: translateY(-8px) rotateX(3deg);
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(212, 20, 90, 0.3);
    }

    .card-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 15px;
    }

    .card h2 {
      margin: 0;
      color: #fff;
      padding: 12px 20px;
      border-radius: 12px;
      background: linear-gradient(135deg, #900, #d4145a);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      font-size: 1.3em;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      min-width: 150px;
      text-align: center;
    }

    .event-type {
      display: inline-block;
      background: linear-gradient(135deg, #900, #d4145a);
      color: white;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.8em;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .event-details {
      flex: 1;
    }

    .event-details p {
      margin: 8px 0;
      line-height: 1.6;
      font-size: 16px;
      color: #e0e0e0;
    }

    .event-details p strong {
      color: #fff;
      font-weight: 600;
      background: linear-gradient(135deg, #fff, #d4145a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 1.1em;
    }

    .card-image {
      flex-shrink: 0;
      width: 200px;
      text-align: center;
    }

    .card img {
      width: 100%;
      max-width: 180px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
      transition: all 0.3s ease;
      filter: brightness(0.9);
    }

    .card:hover img {
      transform: scale(1.05);
      filter: brightness(1);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
    }

    .event-meta {
      display: flex;
      gap: 15px;
      margin: 10px 0;
      flex-wrap: wrap;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.9em;
      color: #ccc;
    }

    .register-btn {
      display: inline-block;
      background: linear-gradient(135deg, #900, #d4145a);
      color: white;
      padding: 10px 25px;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      text-decoration: none;
      margin-top: 15px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(212, 20, 90, 0.4);
      position: relative;
      overflow: hidden;
    }

    .register-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .register-btn:hover::before {
      left: 100%;
    }

    .register-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(212, 20, 90, 0.6);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .col-1 {
      animation: fadeInUp 0.6s ease-out both;
    }

    .col-1:nth-child(1) { animation-delay: 0.1s; }
    .col-1:nth-child(2) { animation-delay: 0.2s; }
    .col-1:nth-child(3) { animation-delay: 0.3s; }

    /* Responsive Design for Landscape */
    @media (max-width: 1024px) {
      .card {
        gap: 20px;
        padding: 25px;
      }
      
      .card-image {
        width: 180px;
      }
      
      .card img {
        max-width: 160px;
      }
    }

    @media (max-width: 768px) {
      .events-stack {
        padding: 10px;
        gap: 20px;
      }
      
      .card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
      }
      
      .card-header {
        flex-direction: column;
        gap: 15px;
      }
      
      .card h2 {
        min-width: auto;
        width: 100%;
      }
      
      .card-image {
        width: 100%;
      }
      
      .card img {
        max-width: 200px;
      }
      
      .event-meta {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .januari {
        padding: 10px;
      }
      
      .events-stack {
        gap: 15px;
      }
      
      .card {
        padding: 15px;
      }
      
      .card h2 {
        font-size: 1.1em;
        padding: 10px 15px;
      }
      
      .event-details p {
        font-size: 14px;
      }
    }

    /* Print Styles */
    @media print {
      .card {
        break-inside: avoid;
        box-shadow: none;
        border: 2px solid #333;
      }
      
      .register-btn {
        display: none;
      }
    }