/* ============================================
   MAIN PAGE STYLES
   ============================================ */

.main-container {
    gap: 63px !important;
    justify-content: flex-start !important;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 55px;
    width: 100%;
    flex-shrink: 0;
    height: 177px;
}

.main-logo {
    width: 225px;
    height: 177px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   START WORKOUT BUTTON
   ============================================ */
.main-start-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    
    width: 270px;
    height: 177px;
    
    background: rgba(137, 0, 0, 1);
    border: 1px solid white;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.main-start-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 4px 20px rgba(169, 0, 0, 0.4); */
}

.main-start-btn:active {
    transform: scale(0.98);
}

.main-start-text {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    color: white;
    width: 146px;
}

.main-start-icon {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
}

.main-start-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   MAIN MENU GRID (2x2)
   ============================================ */
.main-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 124px;
    gap: 10px;
    width: 100%;
    flex-shrink: 0;
}

.main-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 33px 0;
    
    background: rgba(253, 43, 43, 0.2);
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.main-menu-btn:hover {
    background: rgba(253, 43, 43, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
}

.main-menu-btn:active {
    transform: scale(0.97);
}

.main-menu-btn span {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    color: white;
}

/* ============================================
   BOTTOM BUTTONS
   ============================================ */
.main-bottom-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.main-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    
    width: 100%;
    height: 49px;
    
    background: transparent;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.main-bottom-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.main-bottom-btn span {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .main-header {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .main-logo {
        width: 150px;
        height: auto;
    }
    
    .main-start-btn {
        width: 100%;
        height: 120px;
    }
    
    .main-menu-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 100px 100px;
    }
}