* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: #0a0a0a;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    overflow-x: hidden;
    cursor: none;
  }

  .noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAElBMVEUAAAD///////////////////8+Uq06AAAABnRSTlMABAgMEBSach8bAAAAQklEQVQ4y2NgQAX8DIxgwsTACGFAuQxQBoQBZkC5DAgmisEI4tJBWQwoXBSXDsrF5lIGNC4dlE0HZeMKOwZGqBADAKJQCBFUfnB5AAAAAElFTkSuQmCC');
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
  }

  .gradient-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
    z-index: 2;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
  }

  .logo {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .menu {
    display: flex;
    gap: 2rem;
  }

  .menu-item {
    position: relative;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .menu-item:hover {
    color: white;
  }

  .menu-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
  }

  .menu-item:hover::after {
    width: 100%;
  }

  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 4rem 0;
  }

  .text-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .text-container:nth-child(2) {
    animation-delay: 0.2s;
  }

  .normal-text {
    color: white;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
  }

  .bordered-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
    -webkit-text-fill-color: transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
  }

  .bordered-text:hover {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.1);
    letter-spacing: 4px;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
  }

  .scroll-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
  }

  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }

  .contact-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.7s;
  }

  .contact-group {
    display: flex;
    gap: 2rem;
  }

  .contact-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .contact-link:hover {
    color: white;
  }

  .cursor {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
  }

  .cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  @keyframes scrollLine {
    0% {
      transform: scaleY(0);
      transform-origin: top;
    }
    50% {
      transform: scaleY(1);
      transform-origin: top;
    }
    50.1% {
      transform: scaleY(1);
      transform-origin: bottom;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom;
    }
  }

  @media (max-width: 768px) {
    .menu {
      display: none;
    }
    
    .contact-info {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }

    .contact-group {
      flex-direction: column;
      gap: 1rem;
    }

    .cursor {
      display: none;
    }
  }