.mint-section {
    position: relative;
    padding: 0;
    text-align: center;
    background-color: #000000;
    min-height: 600px; /* Фиксированная высота для секции */
}

.nft-preview {
    width: 562px;
    height: auto;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all 0.6s ease-out;
}

.nft-preview.animate {
    transform: translate(-50%, -50%) translateY(-10px);
}

.mint-description {
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.lock-section {
    margin-top: -32px;
}

@media (max-width: 768px) {
    .mint-section {
        min-height: 500px;
    }
    
    .nft-preview {
        width: 468px;
    }
}

@media (max-width: 480px) {
    .mint-section {
        min-height: 400px;
    }
    
    .nft-preview {
        width: 374px;
    }
} 