 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow: hidden;
      background: #111;
    }

    .container {
      display: flex;
      height: 100vh;
      animation: fadeInContainer 1.5s ease-in-out;
    }

    .panel {
      flex: 1;
      position: relative;
      background-size: cover;
      background-position: center;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  
    }

    .eiger {
      background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSl7nEF6VakHX1fnbXWDPnzB-9qgG66ABNNow&s');
      background-color: rgba(255, 0, 0, 0.6);
      background-blend-mode: multiply;
    }

    .matterhorn {
      background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSEj8q1C7vEa5sQ9Hp3dTWjaetxYPbNZfiauQ&s');
      background-color: rgba(0, 0, 0, 0.5);
      background-blend-mode: multiply;
    }

    .content {
      animation: slideUp 1.2s ease-out forwards, fadeInText 1s ease-out forwards;
      opacity: 0;
      transform: translateY(50px);
    }

    .content h1 {
      font-size: 3.5rem;
      margin-bottom: 15px;
      animation: slideInFromLeft 1s ease-out forwards;
    }

    .content p {
      font-size: 1.25rem;
      margin-bottom: 25px;
      animation: slideInFromRight 1.5s ease-out forwards;
    }

    button {
      padding: 12px 28px;
      font-size: 0.9rem;
      border: 2px solid white;
      background: transparent;
      color: white;
      cursor: pointer;
      transition: all 0.4s ease;
      animation: fadeInText 2s ease-out forwards;
      border-radius: 25px;
      box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }

    button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 300%;
      height: 300%;
      background: #fff;
      transition: all 0.5s ease;
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
    }

    button:hover::before {
      transform: translate(-50%, -50%) scale(1);
    }

    button:hover {
      background: white;
      color: black;
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
      letter-spacing: 1px;
    }

    /* Animations */
    @keyframes slideUp {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInText {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes fadeInContainer {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }

    @keyframes slideInFromLeft {
      0% {
        transform: translateX(-100%);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideInFromRight {
      0% {
        transform: translateX(100%);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideInFromTop {
      0% {
        transform: translateY(-100%);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideInFromBottom {
      0% {
        transform: translateY(100%);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Hover Effects for Buttons */
    .panel:hover .n h1 {
      animation: slideInFromTop 1s ease-out forwards;
    }

    .panel:hover .content p {
      animation: slideInFromBottom 1.5s ease-out forwards;
    }
