* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary: #60a5fa;    /* Soft blue */
    --secondary: #93c5fd;  /* Lighter blue */
    --accent: #818cf8;     /* Soft indigo */
    --background: #f0f9ff; /* Very light sky blue */
    --text: #334155;       /* Softer dark blue */
  }

  body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: 
      radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 100% 100%, rgba(147, 197, 253, 0.2) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }

  .container {
    max-width: 1000px;
    padding: 2rem;
    position: relative;
  }

  .hero-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
      0 25px 50px -12px rgba(96, 165, 250, 0.15),
      0 0 0 1px rgba(96, 165, 250, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
  }

  .title-wrapper {
    position: relative;
    margin-bottom: 2rem;
  }

  h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    animation: float 12s ease-in-out infinite;
  }

  .floating-element:nth-child(1) {
    width: 150px;
    height: 150px;
    background: var(--primary);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    bottom: -30px;
    right: -30px;
    animation-delay: -4s;
  }

  .floating-element:nth-child(3) {
    width: 120px;
    height: 120px;
    background: var(--accent);
    top: 50%;
    right: -40px;
    animation-delay: -8s;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(3deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(-20px, -10px) rotate(2deg); }
  }

  .description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
  }

  .animated-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 24px;
    background: linear-gradient(45deg, #60a5fa44, #93c5fd44, #818cf844) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: borderRotate 8s linear infinite;
  }

  @keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text);
    opacity: 0.7;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
  }

  .tools-icon {
    display: inline-block;
    margin-left: 0.5rem;
    animation: wrenchRotate 5s ease-in-out infinite;
  }

  @keyframes wrenchRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-15deg); }
  }

  .ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 1.5s linear infinite;
    background: rgba(96, 165, 250, 0.1);
  }

  @keyframes ripple {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

  /* Hover Effects */
  .hero-section:hover {
    transform: translateY(-5px);
    transition: transform 0.5s ease;
  }

  .hero-section:hover .animated-border {
    animation-duration: 4s;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }

    h1 {
      font-size: 2.5rem;
    }

    .description {
      font-size: 1.125rem;
    }

    .hero-section {
      padding: 2rem;
    }
  }

  /* Mouse move effect */
  .hero-section {
    transition: transform 0.3s ease;
  }