/* Hero Section Styles */
.hero-connect-btn {
    margin: 30px auto;
    padding: 15px 30px;
    font-size: 18px;
    background: linear-gradient(270deg, var(--primary-color) 0%, var(--secondary-color) 96.85%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    display: block;
    width: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(32, 193, 178, 0.3);
}

.hero-connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 193, 178, 0.4);
    background: linear-gradient(270deg, #23d0c0 0%, #089aaf 96.85%);
}

.hero-connect-btn i {
    font-size: 18px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .container-info-screen {
        flex-direction: column;
    }
    
    .screen-block {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .container-result {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .block-result {
        width: 48%;
    }
    
    .hero-connect-btn {
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
    }
}

/* Declutter and improve UI */
.main-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sub-title-main {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.container-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.block-result {
    transition: all 0.3s ease;
}

.block-result:hover {
    transform: translateY(-5px);
}

.result {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.sub-text-result {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pink-text {
    color: var(--accent-color);
    font-weight: bold;
}