#penguin-platform {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(180deg, #0b194a 20%, #060c24 80%);
    overflow: hidden;
  }
  
  /* Star layers for subtle sparkle */
  #penguin-platform::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(1.5px 1.5px at 5% 20%, rgba(255 255 255 / 0.12), transparent 20%),
      radial-gradient(1px 1px at 35% 40%, rgba(255 255 255 / 0.08), transparent 20%),
      radial-gradient(2px 2px at 65% 60%, rgba(255 255 255 / 0.10), transparent 20%),
      radial-gradient(1.2px 1.2px at 85% 80%, rgba(255 255 255 / 0.09), transparent 20%);
    background-repeat: repeat;
    background-size: 100px 100px, 150px 150px, 120px 120px, 85px 85px;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Penguin container */
  .penguin-platform-wrapper {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1e3a7add, #517ce8cc); /* softened semi-transparent blue gradient */
    border-radius: 28px;
    box-shadow:
      0 12px 24px rgba(23, 39, 91, 0.6),
      0 6px 12px rgba(30, 69, 155, 0.5);
    padding: 36px 44px;
    border: 1px solid rgba(255 255 255 / 0.15);
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    transition: box-shadow 0.3s ease;
  }
  
  .penguin-platform-wrapper:hover {
    box-shadow:
      0 18px 42px rgba(23, 39, 91, 0.7),
      0 8px 18px rgba(30, 69, 155, 0.6);
  }
  
  /* Icon styling */
  .penguin-icon i {
    font-size: 44px;
    color: #c6d9ff;
    flex: 0 0 80px;
    pointer-events: none;
    transition: none;
  }
  
  /* Text */
  .penguin-text {
    flex: 1;
    transition: none;
  }
  
  .penguin-text h3 {
    font-weight: 600;
    font-size: 1.9rem;
    margin-bottom: 12px;
    color: #dbe6ff;
  }
  
  .penguin-text p {
    line-height: 1.55;
    color: rgba(255 255 255 / 0.85);
    margin-bottom: 0;
  }
  
  /* Button style with softer glow for elegance */
  .btn-penguin {
    flex: 0 0 auto;
    padding: 14px 38px;
    background: linear-gradient(90deg, #4facfeee, #00f2feee);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(79, 172, 254, 0.4);
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    user-select: none;
  }
  
  .btn-penguin:hover,
  .btn-penguin:focus {
    background: linear-gradient(90deg, #3d73dfee, #24c6dcee);
    box-shadow: 0 10px 30px rgba(61, 115, 223, 0.6);
    transform: translateY(-3px) scale(1.03);
    outline: none;
  }
  
  .btn-penguin:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 14px rgba(61, 115, 223, 0.4);
  }
  
  /* Responsive */
  @media (max-width: 720px) {
    .penguin-platform-wrapper {
      flex-direction: column;
      padding: 30px 24px;
      text-align: center;
    }
    .penguin-icon {
      margin-bottom: 18px;
    }
    .penguin-text {
      margin-bottom: 22px;
    }
    .btn-penguin {
      width: 100%;
      flex: 1 1 auto;
    }
  }
  