/* ================================
   Buttons - 3D Plastic Style
   ================================ */


.btn {
    font-family: 'Segoe UI Black', 'Arial Black', sans-serif;
    font-size: 60px;
    font-weight: 900;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    position: relative;
    padding: 20px 50px;
    letter-spacing: 1px;
}

.btn:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.primary-btn {
    background: #2ecc71;
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.primary-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

.secondary-btn {
    background: #3498db;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    padding: 15px 35px;
    font-size: 60px;
}

.secondary-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.danger-btn {
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.danger-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.icon-btn {
    width: 190px;
    height: 150px;
    padding: 0;
    font-size: 80px;
    background: #ecf0f1;
    color: #2c3e50;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}