
.page-container {

    @media (max-width: 1022px) {
        #heroSection {
            padding-top: 80px !important;
        }
    }
}
#cube-container {
    width: 400px;
    height: 400px;
}
.hero-text {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    animation: fadeIn 2s ease-in-out;
}
.tech-stack {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
}
.tech-stack span {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.tech-stack span:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}