.container {
    text-align: center;
}

h1 {
    font-family: 'Montserrat Black', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: -2px;
    margin: 0;

    background: linear-gradient(180deg, #ee792b, #ee2b2b);
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: fadeUp 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero span {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    animation: fadeUp 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    opacity: 0.6;
    text-transform: uppercase;
    animation: fadeUp 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

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