* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
  }
  
  @media (min-width: 768px) {
    .container {
      flex-direction: row;
    }
  }
  
  .left-panel {
    width: 100%;
    height: 50vh;
    background: linear-gradient(150deg, #6366F1, #EC4899);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
  }
  
  .right-panel {
    width: 100%;
    height: 50vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  @media (min-width: 768px) {
    .left-panel, .right-panel {
      width: 50%;
      height: 100vh;
    }
  }
  
  .content {
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  
  .icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  .icon-wrapper i {
    color: white;
    font-size: 2.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .left-panel p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .alert {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #FFF5F5;
    border-left: 4px solid #f6ad55;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  }
  
  .alert i {
    color: #f6ad55;
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  
  h2 {
    font-size: 1.5rem;
    color: #1a202c;
    font-weight: 600;
  }
  
  .right-panel p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  @media (min-width: 640px) {
    .buttons {
      flex-direction: row;
      flex-wrap: wrap;
    }
  }
  
  .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .mobile-buttons {
      display: none;
    }
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .btn:hover::after {
    height: 100%;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.12);
  }
  
  .primary-btn {
    background-color: #9b59b6;
    color: white;
    border: 2px solid #9b59b6;
  }
  
  .primary-btn:hover {
    background-color: #8e44ad;
    border-color: #8e44ad;
  }
  
  .secondary-btn {
    background-color: #6C63FF;
    color: white;
    border: 2px solid #6C63FF;
  }
  
  .secondary-btn:hover {
    background-color: #5A52D5;
    border-color: #5A52D5;
  }
  
  .outline-btn {
    border: 2px solid #9b59b6;
    color: #9b59b6;
    background-color: transparent;
  }
  
  .outline-btn:hover {
    background-color: rgba(155, 89, 182, 0.05);
  }
  
  @media (max-width: 767px) {
    .icon-wrapper {
      width: 4.5rem;
      height: 4.5rem;
      padding: 0.75rem;
      margin: 0 auto 1.5rem;
    }
    
    .icon-wrapper i {
      font-size: 2.25rem;
    }
    
    h1 {
      font-size: 2.25rem;
      text-align: center;
    }
    
    .left-panel p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .left-panel {
      position: relative;
    }
    
    .left-panel::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 25px;
      background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
      transform: translateY(50%);
    }
    
    .right-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 25px;
      background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.03));
      border-radius: 0 0 50% 50% / 0 0 100% 100%;
      transform: translateY(-50%);
    }
    
    .alert {
      padding: 1rem;
      margin-bottom: 1.25rem;
    }
    
    .alert i {
      font-size: 1.25rem;
    }
    
    h2 {
      font-size: 1.25rem;
    }
    
    .right-panel p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .btn {
      padding: 0.7rem 1.25rem;
      font-size: 0.95rem;
      width: 100%;
    }
  }
  
  /* Additional mobile enhancements */
  @media (max-width: 480px) {
    .left-panel, .right-panel {
      padding: 1.5rem;
    }
    
    .content {
      max-width: 100%;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    .left-panel p {
      font-size: 1rem;
    }
  }
  