.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: 153px;
    letter-spacing: -0.03em;
    line-height: 153px;
    text-align: center;
    font-weight: 600;
}

.hero .name {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 180px;
    font-weight: 400;
}

.hero p {
    margin-top: 30px;
    font-size: 40px;
    letter-spacing: -0.03em;
    line-height: 40px;
    text-align: center;
}

.hero .button {  
    margin-top: 30px;
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid #000000;
    background: transparen;
    font-size: 14px;
    color: #000000;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.hero .button:hover {
    background-color: #000000;
    color: white;
}

.hero .button-icon {
    width: 16px;
    height: 16px;
    background: #ff4444;
    border-radius: 2px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 100px;
        line-height: 100px;
    }

    .hero .name {
        font-size: 120px;
    }

    .hero p {
        font-size: 28px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 60px;
        line-height: 60px;
    }

    .hero .name {
        font-size: 70px;
    }

    .hero p {
        font-size: 20px;
        line-height: 20px;
    }

    .hero .button {
        font-size: 12px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 46px;
        line-height: 40px;
    }

    .hero .name {
        font-size: 45px;
    }

    .hero p {
        font-size: 16px;
        line-height: 16px;
        margin-top: 20px;
    }

    .hero .button {
        margin-top: 20px;
        font-size: 11px;
        padding: 8px 14px;
        gap: 8px;
    }

    .hero .button-icon {
        width: 14px;
        height: 14px;
    }
}