/* Custom styles for TATOE main page */

.custom-button {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px 8px 8px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.custom-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.acronym-highlight {
    color: #667eea;
    font-weight: bold;
    font-size: 2.0em;
}

.feature-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 20px;
    border-radius: 12px;
    color: white;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.feature-card ul {
    margin: 0;
    padding-left: 20px;
}

.feature-card li {
    margin: 8px 0;
}

.gradient-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.gradient-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5em;
}

/* Responsive design */
@media (max-width: 768px) {
    .custom-button {
        display: block;
        margin: 8px 0;
        text-align: center;
    }
    
    .gradient-section {
        padding: 20px;
    }
} 