/* Enhanced Styling for Robots Page */

/* Robot item styling */
.robot-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.robot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.robot-item h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0e1133;
    position: relative;
    padding-right: 15px;
}

.robot-item h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 6px;
    height: 20px;
    background: linear-gradient(to bottom, #2b4eff, #0e1133);
    border-radius: 3px;
}

.robot-item p {
    color: #6d6e75;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Robot list styling */
.robot-list {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-right: 3px solid #2b4eff;
}

.robot-list:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.robot-list h4 {
    font-size: 20px;
    color: #0e1133;
    margin-bottom: 10px;
    font-weight: 600;
}

.robot-list p {
    font-size: 15px;
    margin-bottom: 10px;
}

.robot-badge {
    display: inline-block;
    background-color: rgba(43, 78, 255, 0.1);
    color: #2b4eff;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.robot-badge.free {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.robot-badge.premium {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Download button styling */
.download-button {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(to right, #2b4eff, #4d69fd);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.download-button:hover {
    background: linear-gradient(to right, #0e1133, #2b4eff);
    color: #fff;
    transform: translateY(-2px);
}

.download-button i {
    margin-left: 5px;
}

/* Features list */
.features-list {
    margin: 20px 0;
    padding: 0;
}

.features-list li {
    list-style: none;
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #6d6e75;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    color: #2b4eff;
    font-weight: bold;
}

/* Compatibility badges */
.compatibility-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 5px 12px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #6d6e75;
    border: 1px solid #e9ecef;
}

.compatibility-badge i {
    margin-left: 5px;
    color: #0e1133;
}

/* Robot category tag */
.robot-category {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(to right, #ff5421, #f85e20);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(255, 84, 33, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .robot-item {
        padding: 20px;
    }
    
    .robot-item h2 {
        font-size: 22px;
    }
    
    .robot-list {
        padding: 20px;
    }
} 